aboutsummaryrefslogtreecommitdiffhomepage
path: root/js
diff options
context:
space:
mode:
authorHakim El Hattab2012-07-01 01:57:23 -0400
committerHakim El Hattab2012-07-01 01:57:23 -0400
commitbf2c95b546c5dbff1c8b5903fb89e2ecee9b297b (patch)
tree4db5f768404fd00ae41b1f409bede832e1377ff9 /js
parentbdad679715ca3d82a0ff4a2bae7353785ac9b125 (diff)
parent4ca99d426446508b63ad995ea029f4fc95c82952 (diff)
Merge branch 'presenter_notes_server' of https://github.com/rmurphey/reveal.js into notes
Diffstat (limited to 'js')
-rw-r--r--js/slidenotes.js35
1 files changed, 35 insertions, 0 deletions
diff --git a/js/slidenotes.js b/js/slidenotes.js
new file mode 100644
index 0000000..4e0ebab
--- /dev/null
+++ b/js/slidenotes.js
@@ -0,0 +1,35 @@
+(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(window.location.origin);
+ var socketId = Math.random().toString().slice(2);
+ console.log('View slide notes at ' + window.location.origin + '/_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
+ };
+
+ socket.emit('slidechanged', slideData);
+ } );
+}());