Skip to content
Snippets Groups Projects
Commit 8980f8ac authored by Rebecca Murphey's avatar Rebecca Murphey
Browse files

fix socket id

parent 5fc7fc89
No related branches found
No related tags found
No related merge requests found
......@@ -4,7 +4,7 @@
if (qs.length > 1 && qs[1].match('receiver')) { return; }
var socket = io.connect(window.location.origin);
var socketId = socket.socket.sessionid;
var socketId = Math.random().toString().slice(2);
console.log('View slide notes at ' + window.location.origin + '/_notes/' + socketId);
Reveal.addEventListener( 'slidechanged', function( event ) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment