From 49298e199189ceddece6b9e62e7d811df0f904ff Mon Sep 17 00:00:00 2001 From: Hakim El Hattab Date: Sun, 11 Aug 2013 16:32:15 -0400 Subject: disable transitions while presentation loads --- js/reveal.js | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'js/reveal.js') diff --git a/js/reveal.js b/js/reveal.js index feb2a10..08fd474 100644 --- a/js/reveal.js +++ b/js/reveal.js @@ -218,6 +218,9 @@ var Reveal = (function(){ dom.wrapper = document.querySelector( '.reveal' ); dom.slides = document.querySelector( '.reveal .slides' ); + // Prevent transitions while we're loading + dom.slides.classList.add( 'no-transition' ); + // Background element if( !document.querySelector( '.reveal .backgrounds' ) ) { dom.background = document.createElement( 'div' ); @@ -444,6 +447,9 @@ var Reveal = (function(){ // Notify listeners that the presentation is ready but use a 1ms // timeout to ensure it's not fired synchronously after #initialize() setTimeout( function() { + // Enable transitions now that we're loaded + dom.slides.classList.remove( 'no-transition' ); + dispatchEvent( 'ready', { 'indexh': indexh, 'indexv': indexv, -- cgit v1.2.3