diff options
author | Michael Kühnel <mail@michael-kuehnel.de> | 2012-10-18 23:56:51 +0200 |
---|---|---|
committer | Michael Kühnel <mail@michael-kuehnel.de> | 2012-10-18 23:56:51 +0200 |
commit | 409c0dfbcc889017813a526b21ffd0a42aa5e804 (patch) | |
tree | d507ae20e3e2a07e8d91b5acd460cdbf3d5399a4 /plugin | |
parent | cbdbfc07f49d883ffcd432eac53303933deafe42 (diff) | |
download | fosdem-2018-presentation-409c0dfbcc889017813a526b21ffd0a42aa5e804.tar fosdem-2018-presentation-409c0dfbcc889017813a526b21ffd0a42aa5e804.tar.gz |
Add missing semicolon
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 ad1bd46..43dc126 100644 --- a/plugin/speakernotes/client.js +++ b/plugin/speakernotes/client.js @@ -6,7 +6,7 @@ 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) + window.open(window.location.origin + '/notes/' + socketId, 'notes-' + socketId); Reveal.addEventListener( 'slidechanged', function( event ) { var nextindexh; |