diff options
author | Hakim El Hattab <hakim.elhattab@gmail.com> | 2014-04-22 14:06:58 +0200 |
---|---|---|
committer | Hakim El Hattab <hakim.elhattab@gmail.com> | 2014-04-22 14:06:58 +0200 |
commit | ce05138f9a9065526ee584d2f59e48952910522f (patch) | |
tree | 42b6435207eb0f0fbefac5d2afe4de4ea6b5c79a /plugin/notes/notes.js | |
parent | 9b2851376dee7a29e6142c011b3af80d6d917a87 (diff) | |
download | freenode-live-2017-presentation-ce05138f9a9065526ee584d2f59e48952910522f.tar freenode-live-2017-presentation-ce05138f9a9065526ee584d2f59e48952910522f.tar.gz |
dont toggle paused/overview modes needlessly when setting state
Diffstat (limited to 'plugin/notes/notes.js')
-rw-r--r-- | plugin/notes/notes.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/notes/notes.js b/plugin/notes/notes.js index 31efd81..a0b6a5a 100644 --- a/plugin/notes/notes.js +++ b/plugin/notes/notes.js @@ -14,7 +14,7 @@ var RevealNotes = (function() { function openNotes() { var jsFileLocation = document.querySelector('script[src$="notes.js"]').src; // this js file path jsFileLocation = jsFileLocation.replace(/notes\.js(\?.*)?$/, ''); // the js folder path - var notesPopup = window.open( jsFileLocation + 'notes.html', 'reveal.js - Notes', 'width=1120,height=850' ); + var notesPopup = window.open( jsFileLocation + 'notes.html', 'reveal.js - Notes', 'width=1100,height=700' ); /** * Connect to the notes window through a postmessage handshake. |