diff options
author | Hakim El Hattab <hakim.elhattab@gmail.com> | 2012-10-20 21:05:14 -0400 |
---|---|---|
committer | Hakim El Hattab <hakim.elhattab@gmail.com> | 2012-10-20 21:05:14 -0400 |
commit | 8bdeb360ce55fa13efcf2529ba42e38bb7d790d1 (patch) | |
tree | 4275ad2da75462e369bdc3b19646dc595aca6da5 /plugin/notes/notes.js | |
parent | c6f8a44edf258567bc8324e45adb66036feb00ee (diff) | |
download | fosdem-2018-presentation-8bdeb360ce55fa13efcf2529ba42e38bb7d790d1.tar fosdem-2018-presentation-8bdeb360ce55fa13efcf2529ba42e38bb7d790d1.tar.gz |
clean up trailing whitespace (closes #197)
Diffstat (limited to 'plugin/notes/notes.js')
-rw-r--r-- | plugin/notes/notes.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugin/notes/notes.js b/plugin/notes/notes.js index 58c26e0..729dad3 100644 --- a/plugin/notes/notes.js +++ b/plugin/notes/notes.js @@ -39,7 +39,7 @@ var RevealNotes = (function() { notesPopup.postMessage( JSON.stringify( slideData ), '*' ); } - // The main presentation is kept in sync when navigating the + // The main presentation is kept in sync when navigating the // note slides so that the popup may be used as a remote window.addEventListener( 'message', function( event ) { var data = JSON.parse( event.data ); @@ -60,7 +60,7 @@ var RevealNotes = (function() { // Open the notes when the 's' key is hit document.addEventListener( 'keydown', function( event ) { - // Disregard the event if the target is editable or a + // Disregard the event if the target is editable or a // modifier is present if ( document.querySelector( ':focus' ) !== null || event.shiftKey || event.altKey || event.ctrlKey || event.metaKey ) return; |