aboutsummaryrefslogtreecommitdiffhomepage
path: root/js
diff options
context:
space:
mode:
authorRebecca Murphey2012-06-17 18:43:54 -0400
committerRebecca Murphey2012-06-17 18:43:54 -0400
commit677ef9919be61249c2527086e093333b9f2ec03d (patch)
tree597a7d5078118df74644f3222ad14a5ceb2a5d6a /js
parent0163ffcb435a8d5584a934afcf3eda0156c14fdd (diff)
broadcast socket id as part of slidedata
Diffstat (limited to 'js')
-rw-r--r--js/slidenotes.js7
1 files changed, 5 insertions, 2 deletions
diff --git a/js/slidenotes.js b/js/slidenotes.js
index ef05062..8a0865a 100644
--- a/js/slidenotes.js
+++ b/js/slidenotes.js
@@ -4,6 +4,8 @@
if (qs.length > 1 && qs[1].match('receiver')) { return; }
var socket = io.connect(window.location.origin);
+ var socketId = socket.socket.sessionid;
+ console.log('View slide notes at ' + window.location.origin + '/_notes/' + socketId);
Reveal.addEventListener( 'slidechanged', function( event ) {
var nextindexh;
@@ -24,9 +26,10 @@
indexh : event.indexh,
indexv : event.indexv,
nextindexh : nextindexh,
- nextindexv : nextindexv
+ nextindexv : nextindexv,
+ socketId : socketId
};
socket.emit('slidechanged', slideData);
} );
-}()); \ No newline at end of file
+}());