diff options
author | Eric J. Duran | 2012-10-17 17:46:43 -0400 |
---|---|---|
committer | Eric J. Duran | 2012-10-17 17:46:43 -0400 |
commit | 070a1e3ee5bbe44b6f3cdadedb031f3eee433ac6 (patch) | |
tree | a77dff4ec0e458de28263e02ee02be9d8c0e98d1 /plugin/speakernotes/client.js | |
parent | 558c21e1a3839fa09103c3928b15315bc0928d09 (diff) |
Replacing speakernotes plugin with a simple postMessage system
Diffstat (limited to 'plugin/speakernotes/client.js')
-rw-r--r-- | plugin/speakernotes/client.js | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/plugin/speakernotes/client.js b/plugin/speakernotes/client.js deleted file mode 100644 index ad1bd46..0000000 --- a/plugin/speakernotes/client.js +++ /dev/null @@ -1,38 +0,0 @@ -(function() { - // don't emit events from inside the previews themselves - if ( window.location.search.match( /receiver/gi ) ) { return; } - - var socket = io.connect(window.location.origin); - var socketId = Math.random().toString().slice(2); - - console.log('View slide notes at ' + window.location.origin + '/notes/' + socketId); - window.open(window.location.origin + '/notes/' + socketId, 'notes-' + socketId) - - Reveal.addEventListener( 'slidechanged', function( event ) { - var nextindexh; - var nextindexv; - var slideElement = event.currentSlide; - - if (slideElement.nextElementSibling && slideElement.parentNode.nodeName == 'SECTION') { - nextindexh = event.indexh; - nextindexv = event.indexv + 1; - } else { - nextindexh = event.indexh + 1; - nextindexv = 0; - } - - var notes = slideElement.querySelector('aside.notes'); - var slideData = { - notes : notes ? notes.innerHTML : '', - indexh : event.indexh, - indexv : event.indexv, - nextindexh : nextindexh, - nextindexv : nextindexv, - socketId : socketId, - markdown : notes ? typeof notes.getAttribute('data-markdown') === 'string' : false - - }; - - socket.emit('slidechanged', slideData); - } ); -}()); |