diff options
author | Rebecca Murphey | 2012-06-07 23:21:14 -0400 |
---|---|---|
committer | Rebecca Murphey | 2012-06-07 23:21:14 -0400 |
commit | 60f2eb9fb3c4443fbc43d387e866f383f0f70d67 (patch) | |
tree | 116d482d7a041f4424d2851bf04dad4247a09cf2 /js | |
parent | 5d979fdf4a8738ed83e9c4f2827c42ceae247cd8 (diff) |
taking a stab at a presenter notes server
Diffstat (limited to 'js')
-rw-r--r-- | js/slidenotes.js | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/js/slidenotes.js b/js/slidenotes.js new file mode 100644 index 0000000..9a4f152 --- /dev/null +++ b/js/slidenotes.js @@ -0,0 +1,32 @@ +(function() { + // don't emit events from inside the previews themselves + var qs = window.location.href.split('?'); + if (qs.length > 1 && qs[1].match('receiver')) { return; } + + var socket = io.connect('http://localhost:1947'); + + 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 + }; + + socket.emit('slidechanged', slideData); + } ); +}());
\ No newline at end of file |