diff options
Diffstat (limited to 'plugin')
-rw-r--r-- | plugin/notes/notes.html | 10 | ||||
-rw-r--r-- | plugin/notes/notes.js | 2 |
2 files changed, 9 insertions, 3 deletions
diff --git a/plugin/notes/notes.html b/plugin/notes/notes.html index 15c7ae9..95cc525 100644 --- a/plugin/notes/notes.html +++ b/plugin/notes/notes.html @@ -249,7 +249,13 @@ */ function setupIframes( data ) { - var url = data.url + '?receiver&progress=false&overview=false&history=false'; + var params = [ + 'receiver', + 'progress=false', + 'history=false' + ]; + + var url = data.url + '?' + params.join( '&' ); var hash = '#/' + data.state.indexh + '/' + data.state.indexv; currentSlide = document.createElement( 'iframe' ); @@ -261,7 +267,7 @@ nextSlide = document.createElement( 'iframe' ); nextSlide.setAttribute( 'width', 640 ); nextSlide.setAttribute( 'height', 512 ); - nextSlide.setAttribute( 'src', url + '&controls=false' + hash ); + nextSlide.setAttribute( 'src', url + '&controls=false&transition=none&backgroundTransition=none' + hash ); document.querySelector( '#next-slide' ).appendChild( nextSlide ); } 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. |