projects
/
reveal.js.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5fc7fc8
)
fix socket id
author
Rebecca Murphey
<rmurphey@gmail.com>
Sun, 17 Jun 2012 22:59:43 +0000
(18:59 -0400)
committer
Rebecca Murphey
<rmurphey@gmail.com>
Sun, 17 Jun 2012 22:59:43 +0000
(18:59 -0400)
js/slidenotes.js
patch
|
blob
|
history
diff --git
a/js/slidenotes.js
b/js/slidenotes.js
index 8a0865ac3de9b49d2b5ec692a129d7547d50c031..4e0ebab3efbc5a365aad3e90efa476721b27c906 100644
(file)
--- a/
js/slidenotes.js
+++ b/
js/slidenotes.js
@@
-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 ) {