Skip to content

Commit 884ecc6

Browse files
committed
Merge branch 'open-notes-in-new-window' of https://github.com/technicalpickles/reveal.js
2 parents 21f27bd + 77d338f commit 884ecc6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugin/speakernotes/client.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
var socket = io.connect(window.location.origin);
66
var socketId = Math.random().toString().slice(2);
77

8-
console.log('View slide notes at ' + window.location.origin + '/notes/' + socketId);
8+
window.open(window.location.origin + '/notes/' + socketId, 'notes-' + socketId)
99

1010
Reveal.addEventListener( 'slidechanged', function( event ) {
1111
var nextindexh;

0 commit comments

Comments
 (0)