diff options
author | David Banham | 2012-08-04 14:33:27 +1000 |
---|---|---|
committer | David Banham | 2012-08-04 14:33:27 +1000 |
commit | 79299d00710e61c7b9cbd9bfda87168b958a836d (patch) | |
tree | d5a53f68deefaf4de1deafca34ab96b9b96ba749 | |
parent | 2c3a494eaa4140a2964465848c8483deafc4e86e (diff) |
Include speaker notes plugin after reveal.js
Must be called after reveal.js otherwise the Reveal object is undefined
and the plugin can't add it's event listener.
-rw-r--r-- | index.html | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -322,6 +322,8 @@ function linkify( selector ) { scripts.push( 'lib/js/data-markdown.js' ); } + scripts.push( 'js/reveal.js' ); + // If we're runnning the notes server we need to include some additional JS // TODO Is there a better way to determine if we're running the notes server? if( window.location.host === 'localhost:1947' ) { @@ -329,12 +331,10 @@ function linkify( selector ) { scripts.push( 'plugin/speakernotes/client.js' ); } - scripts.push( 'js/reveal.js' ); - // Load the scripts and, when completed, initialize reveal.js head.js.apply( null, scripts ); </script> </body> -</html>
\ No newline at end of file +</html> |