diff options
author | Hakim El Hattab | 2012-09-09 22:14:25 -0400 |
---|---|---|
committer | Hakim El Hattab | 2012-09-09 22:14:25 -0400 |
commit | 884ecc6225e03545657edf653c6f505e0e83d925 (patch) | |
tree | 770a016dba530a94a4f39257ac2da8a4dbf77704 /plugin | |
parent | 21f27bdd34b5bbef4b0a56c4bc44dfd3b3865c46 (diff) | |
parent | 77d338f93ae9ef443949ffe962732eeffc4964f8 (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.js | 2 |
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; |