Browse Source

broadcast socket id as part of slidedata

Rebecca Murphey 12 năm trước cách đây
mục cha
commit
677ef9919b
1 tập tin đã thay đổi với 5 bổ sung2 xóa
  1. 5 2
      js/slidenotes.js

+ 5 - 2
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);
   } );
-}());
+}());