Browse Source

Add missing semicolon

embed
Michael Kühnel 12 years ago
parent
commit
409c0dfbcc
  1. 2
      plugin/speakernotes/client.js

2
plugin/speakernotes/client.js

@ -6,7 +6,7 @@
var socketId = Math.random().toString().slice(2); var socketId = Math.random().toString().slice(2);
console.log('View slide notes at ' + window.location.origin + '/notes/' + socketId); 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 ) { Reveal.addEventListener( 'slidechanged', function( event ) {
var nextindexh; var nextindexh;

Loading…
Cancel
Save