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:
cbdbfc0
)
Add missing semicolon
author
Michael Kühnel
<mail@michael-kuehnel.de>
Thu, 18 Oct 2012 21:56:51 +0000
(23:56 +0200)
committer
Michael Kühnel
<mail@michael-kuehnel.de>
Thu, 18 Oct 2012 21:56:51 +0000
(23:56 +0200)
plugin/speakernotes/client.js
patch
|
blob
|
history
diff --git
a/plugin/speakernotes/client.js
b/plugin/speakernotes/client.js
index ad1bd4616ebe6e8ea20d37b0d30c6928705734ab..43dc1264b709551ab314bbdbf8cb49a8e77a13e1 100644
(file)
--- a/
plugin/speakernotes/client.js
+++ b/
plugin/speakernotes/client.js
@@
-6,7
+6,7
@@
var socketId = Math.random().toString().slice(2);
console.log('View slide notes at ' + window.location.origin + '/notes/' + socketId);
- window.open(window.location.origin + '/notes/' + socketId, 'notes-' + socketId)
+ window.open(window.location.origin + '/notes/' + socketId, 'notes-' + socketId)
;
Reveal.addEventListener( 'slidechanged', function( event ) {
var nextindexh;