diff options
author | Hakim El Hattab | 2013-08-13 08:41:16 -0400 |
---|---|---|
committer | Hakim El Hattab | 2013-08-13 08:41:16 -0400 |
commit | 71218583f7002c29bf8f3cc2fce37cb1e2823802 (patch) | |
tree | 75daa79c1431d70fcc9a2ec77b0cbced3c36e6c2 /js/reveal.js | |
parent | e7ee8858a263e2db2d65eb77e7dfbea32ca042c2 (diff) |
add isReady method to check reveal.js loaded state
Diffstat (limited to 'js/reveal.js')
-rw-r--r-- | js/reveal.js | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/js/reveal.js b/js/reveal.js index fd281cb..f0cb6bd 100644 --- a/js/reveal.js +++ b/js/reveal.js @@ -96,6 +96,9 @@ var Reveal = (function(){ dependencies: [] }, + // Flags if reveal.js is loaded (has dispatched the 'ready' event) + loaded = false, + // The current auto-slide duration autoSlide = 0, @@ -447,6 +450,8 @@ var Reveal = (function(){ // Enable transitions now that we're loaded dom.slides.classList.remove( 'no-transition' ); + loaded = true; + dispatchEvent( 'ready', { 'indexh': indexh, 'indexv': indexv, @@ -2670,6 +2675,11 @@ var Reveal = (function(){ } }, + // Checks if reveal.js has been loaded and is ready for use + isReady: function() { + return loaded; + }, + // Forward event binding to the reveal DOM element addEventListener: function( type, listener, useCapture ) { if( 'addEventListener' in window ) { |