aboutsummaryrefslogtreecommitdiffhomepage
path: root/plugin
diff options
context:
space:
mode:
authorHakim El Hattab2012-09-09 22:14:25 -0400
committerHakim El Hattab2012-09-09 22:14:25 -0400
commit884ecc6225e03545657edf653c6f505e0e83d925 (patch)
tree770a016dba530a94a4f39257ac2da8a4dbf77704 /plugin
parent21f27bdd34b5bbef4b0a56c4bc44dfd3b3865c46 (diff)
parent77d338f93ae9ef443949ffe962732eeffc4964f8 (diff)
Merge branch 'open-notes-in-new-window' of https://github.com/technicalpickles/reveal.js
Diffstat (limited to 'plugin')
-rw-r--r--plugin/speakernotes/client.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/speakernotes/client.js b/plugin/speakernotes/client.js
index 1aba8b8..a97ad46 100644
--- a/plugin/speakernotes/client.js
+++ b/plugin/speakernotes/client.js
@@ -5,7 +5,7 @@
var socket = io.connect(window.location.origin);
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)
Reveal.addEventListener( 'slidechanged', function( event ) {
var nextindexh;