aboutsummaryrefslogtreecommitdiff
path: root/plugin/notes/notes.html
diff options
context:
space:
mode:
authorHakim El Hattab <hakim.elhattab@gmail.com>2014-04-22 14:06:58 +0200
committerHakim El Hattab <hakim.elhattab@gmail.com>2014-04-22 14:06:58 +0200
commitce05138f9a9065526ee584d2f59e48952910522f (patch)
tree42b6435207eb0f0fbefac5d2afe4de4ea6b5c79a /plugin/notes/notes.html
parent9b2851376dee7a29e6142c011b3af80d6d917a87 (diff)
downloadfreenode-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.html')
-rw-r--r--plugin/notes/notes.html10
1 files changed, 8 insertions, 2 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 );
}