From ce05138f9a9065526ee584d2f59e48952910522f Mon Sep 17 00:00:00 2001 From: Hakim El Hattab Date: Tue, 22 Apr 2014 14:06:58 +0200 Subject: dont toggle paused/overview modes needlessly when setting state --- plugin/notes/notes.html | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'plugin/notes/notes.html') 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 ); } -- cgit v1.2.3