fix issue in browsers that don't support classList
This commit is contained in:
parent
3a2036e2b2
commit
551c783b72
|
@ -120,9 +120,6 @@ var Reveal = (function(){
|
||||||
// Copy options over to our config object
|
// Copy options over to our config object
|
||||||
extend( config, options );
|
extend( config, options );
|
||||||
|
|
||||||
// Make sure we've got all the DOM elements we need
|
|
||||||
setupDOM();
|
|
||||||
|
|
||||||
// Hide the address bar in mobile browsers
|
// Hide the address bar in mobile browsers
|
||||||
hideAddressBar();
|
hideAddressBar();
|
||||||
|
|
||||||
|
@ -256,6 +253,9 @@ var Reveal = (function(){
|
||||||
* to the current URL deeplink if there is one.
|
* to the current URL deeplink if there is one.
|
||||||
*/
|
*/
|
||||||
function start() {
|
function start() {
|
||||||
|
// Make sure we've got all the DOM elements we need
|
||||||
|
setupDOM();
|
||||||
|
|
||||||
// Subscribe to input
|
// Subscribe to input
|
||||||
addEventListeners();
|
addEventListeners();
|
||||||
|
|
||||||
|
|
4
js/reveal.min.js
vendored
4
js/reveal.min.js
vendored
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue
Block a user