updated markdown references in notes plugin
This commit is contained in:
		
							
								
								
									
										10
									
								
								README.md
									
									
									
									
									
								
							
							
						
						
									
										10
									
								
								README.md
									
									
									
									
									
								
							| @@ -97,13 +97,13 @@ Reveal.js doesn't _rely_ on any third party scripts to work but a few optional l | |||||||
| ```javascript | ```javascript | ||||||
| Reveal.initialize({ | Reveal.initialize({ | ||||||
| 	dependencies: [ | 	dependencies: [ | ||||||
| 		// Syntax highlight for <code> elements |  | ||||||
| 		{ src: 'lib/js/highlight.js', async: true, callback: function() { window.hljs.initHighlightingOnLoad(); } }, |  | ||||||
| 		// Cross-browser shim that fully implements classList - https://github.com/eligrey/classList.js/ | 		// Cross-browser shim that fully implements classList - https://github.com/eligrey/classList.js/ | ||||||
| 		{ src: 'lib/js/classList.js', condition: function() { return !document.body.classList; } } | 		{ src: 'lib/js/classList.js', condition: function() { return !document.body.classList; } }, | ||||||
| 		// Interpret Markdown in <section> elements | 		// Interpret Markdown in <section> elements | ||||||
| 		{ src: 'lib/js/data-markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } }, | 		{ src: 'plugin/markdown/showdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } }, | ||||||
| 		{ src: 'lib/js/showdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } }, | 		{ src: 'plugin/markdown/markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } }, | ||||||
|  | 		// Syntax highlight for <code> elements | ||||||
|  | 		{ src: 'plugin/highlight/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } }, | ||||||
| 		// Zoom in and out with Alt+click | 		// Zoom in and out with Alt+click | ||||||
| 		{ src: 'plugin/zoom-js/zoom.js', async: true, condition: function() { return !!document.body.classList; } }, | 		{ src: 'plugin/zoom-js/zoom.js', async: true, condition: function() { return !!document.body.classList; } }, | ||||||
| 		// Speaker notes | 		// Speaker notes | ||||||
|   | |||||||
| @@ -99,7 +99,7 @@ | |||||||
| 		<div id="notes"></div> | 		<div id="notes"></div> | ||||||
|  |  | ||||||
| 		<script src="/socket.io/socket.io.js"></script> | 		<script src="/socket.io/socket.io.js"></script> | ||||||
|                 <script src="/lib/js/showdown.js"></script> | 		<script src="/plugin/markdown/showdown.js"></script> | ||||||
|  |  | ||||||
| 		<script> | 		<script> | ||||||
| 		var socketId = '{{socketId}}'; | 		var socketId = '{{socketId}}'; | ||||||
|   | |||||||
| @@ -98,7 +98,7 @@ | |||||||
| 		</div> | 		</div> | ||||||
| 		<div id="notes"></div> | 		<div id="notes"></div> | ||||||
|  |  | ||||||
| 		<script src="../../lib/js/showdown.js"></script> | 		<script src="../../plugin/markdown/showdown.js"></script> | ||||||
| 		<script> | 		<script> | ||||||
| 			window.addEventListener( 'load', function() { | 			window.addEventListener( 'load', function() { | ||||||
|  |  | ||||||
| @@ -120,6 +120,7 @@ | |||||||
| 						} | 						} | ||||||
|  |  | ||||||
| 						// Update the note slides | 						// Update the note slides | ||||||
|  | 						console.log(currentSlide.contentWindow); | ||||||
| 						currentSlide.contentWindow.Reveal.slide( data.indexh, data.indexv ); | 						currentSlide.contentWindow.Reveal.slide( data.indexh, data.indexv ); | ||||||
| 						nextSlide.contentWindow.Reveal.slide( data.nextindexh, data.nextindexv ); | 						nextSlide.contentWindow.Reveal.slide( data.nextindexh, data.nextindexv ); | ||||||
|  |  | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user