aboutsummaryrefslogtreecommitdiffhomepage
path: root/plugin/speakernotes/client.js
diff options
context:
space:
mode:
Diffstat (limited to 'plugin/speakernotes/client.js')
-rw-r--r--plugin/speakernotes/client.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/plugin/speakernotes/client.js b/plugin/speakernotes/client.js
index a97ad46..b164a56 100644
--- a/plugin/speakernotes/client.js
+++ b/plugin/speakernotes/client.js
@@ -5,7 +5,8 @@
var socket = io.connect(window.location.origin);
var socketId = Math.random().toString().slice(2);
- window.open(window.location.origin + '/notes/' + socketId, 'notes-' + socketId)
+ 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;