diff options
author | Greg Denehy | 2017-04-30 17:42:16 +0930 |
---|---|---|
committer | Greg Denehy | 2017-04-30 17:42:16 +0930 |
commit | f8bc6791827b7a291081a32ef3d86f5e23d186e7 (patch) | |
tree | 87b004b3f1b0575757de6c42bace8f5330926ae0 /plugin/notes/notes.js | |
parent | 40a46e1c0c7836bdc26d25993a5c785be82e9973 (diff) | |
parent | 360bc940062711db9b8020ce4e848f6c37014481 (diff) |
Merge branch 'dev' into plugin-key-bindings
Diffstat (limited to 'plugin/notes/notes.js')
-rw-r--r-- | plugin/notes/notes.js | 40 |
1 files changed, 34 insertions, 6 deletions
diff --git a/plugin/notes/notes.js b/plugin/notes/notes.js index 6373d97..1a35110 100644 --- a/plugin/notes/notes.js +++ b/plugin/notes/notes.js @@ -11,10 +11,18 @@ */ var RevealNotes = (function() { - function openNotes() { - var jsFileLocation = document.querySelector('script[src$="notes.js"]').src; // this js file path - jsFileLocation = jsFileLocation.replace(/notes\.js(\?.*)?$/, ''); // the js folder path - var notesPopup = window.open( jsFileLocation + 'notes.html', 'reveal.js - Notes', 'width=1100,height=700' ); + function openNotes( notesFilePath ) { + + if( !notesFilePath ) { + var jsFileLocation = document.querySelector('script[src$="notes.js"]').src; // this js file path + jsFileLocation = jsFileLocation.replace(/notes\.js(\?.*)?$/, ''); // the js folder path + notesFilePath = jsFileLocation + 'notes.html'; + } + + var notesPopup = window.open( notesFilePath, 'reveal.js - Notes', 'width=1100,height=700' ); + + // Allow popup window access to Reveal API + notesPopup.Reveal = this.Reveal; /** * Connect to the notes window through a postmessage handshake. @@ -45,10 +53,11 @@ var RevealNotes = (function() { /** * Posts the current slide data to the notes window */ - function post() { + function post( event ) { var slideElement = Reveal.getCurrentSlide(), - notesElement = slideElement.querySelector( 'aside.notes' ); + notesElement = slideElement.querySelector( 'aside.notes' ), + fragmentElement = slideElement.querySelector( '.current-fragment' ); var messageData = { namespace: 'reveal-notes', @@ -65,6 +74,21 @@ var RevealNotes = (function() { messageData.whitespace = 'pre-wrap'; } + // Look for notes defined in a fragment + if( fragmentElement ) { + var fragmentNotes = fragmentElement.querySelector( 'aside.notes' ); + if( fragmentNotes ) { + notesElement = fragmentNotes; + } + else if( fragmentElement.hasAttribute( 'data-notes' ) ) { + messageData.notes = fragmentElement.getAttribute( 'data-notes' ); + messageData.whitespace = 'pre-wrap'; + + // In case there are slide notes + notesElement = null; + } + } + // Look for notes defined in an aside element if( notesElement ) { messageData.notes = notesElement.innerHTML; @@ -96,6 +120,7 @@ var RevealNotes = (function() { } connect(); + } if( !/receiver/i.test( window.location.search ) ) { @@ -108,6 +133,9 @@ var RevealNotes = (function() { // Open the notes when the 's' key is hit Reveal.addKeyBinding({keyCode: 83, key: 'S', description: 'Speaker notes'}, openNotes); + // Show our keyboard shortcut in the reveal.js help overlay + if( window.Reveal ) Reveal.registerKeyboardShortcut( 'S', 'Speaker notes view' ); + } return { open: openNotes }; |