diff options
author | MichiK <michik+github@michik.net> | 2015-11-19 13:51:22 +0100 |
---|---|---|
committer | MichiK <michik+github@michik.net> | 2015-11-19 13:51:22 +0100 |
commit | a398a02edb19ad73d0bebcd5c3bd5334bc05ff3d (patch) | |
tree | f23dfc11bf8ba14ac84d1100def708a5aaab8526 /js | |
parent | 4a45557b576c945aba71d0b5728c9a9c7510b699 (diff) | |
download | fosdem-2018-presentation-a398a02edb19ad73d0bebcd5c3bd5334bc05ff3d.tar fosdem-2018-presentation-a398a02edb19ad73d0bebcd5c3bd5334bc05ff3d.tar.gz |
Fix build error
Diffstat (limited to 'js')
-rw-r--r-- | js/reveal.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/reveal.js b/js/reveal.js index db64412..46a6295 100644 --- a/js/reveal.js +++ b/js/reveal.js @@ -3689,7 +3689,7 @@ // - The presentation isn't over if( autoSlide && !autoSlidePaused && !isPaused() && !isOverview() && ( !Reveal.isLastSlide() || availableFragments().next || config.loop === true ) ) { autoSlideTimeout = setTimeout( function() { - typeof config.autoSlideMethod == 'function' ? config.autoSlideMethod() : navigateNext(); + typeof config.autoSlideMethod === 'function' ? config.autoSlideMethod() : navigateNext(); cueAutoSlide(); }, autoSlide ); autoSlideStartTime = Date.now(); |