diff options
author | Hakim El Hattab | 2012-10-17 23:01:41 -0400 |
---|---|---|
committer | Hakim El Hattab | 2012-10-17 23:01:41 -0400 |
commit | 551c783b7241760594a31e286822ee5643ecc0e6 (patch) | |
tree | 5f424646488b38a91fb231c8ec2398506c15c338 /js/reveal.js | |
parent | 3a2036e2b20fa13bc92f4fdecc0b17342c4f8204 (diff) |
fix issue in browsers that don't support classList
Diffstat (limited to 'js/reveal.js')
-rw-r--r-- | js/reveal.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/js/reveal.js b/js/reveal.js index e53195f..c2769e5 100644 --- a/js/reveal.js +++ b/js/reveal.js @@ -120,9 +120,6 @@ var Reveal = (function(){ // Copy options over to our config object extend( config, options ); - // Make sure we've got all the DOM elements we need - setupDOM(); - // Hide the address bar in mobile browsers hideAddressBar(); @@ -256,6 +253,9 @@ var Reveal = (function(){ * to the current URL deeplink if there is one. */ function start() { + // Make sure we've got all the DOM elements we need + setupDOM(); + // Subscribe to input addEventListeners(); |