aboutsummaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorMichiK <michik+github@michik.net>2015-11-19 13:51:22 +0100
committerMichiK <michik+github@michik.net>2015-11-19 13:51:22 +0100
commita398a02edb19ad73d0bebcd5c3bd5334bc05ff3d (patch)
treef23dfc11bf8ba14ac84d1100def708a5aaab8526 /js
parent4a45557b576c945aba71d0b5728c9a9c7510b699 (diff)
downloadfosdem-2018-presentation-a398a02edb19ad73d0bebcd5c3bd5334bc05ff3d.tar
fosdem-2018-presentation-a398a02edb19ad73d0bebcd5c3bd5334bc05ff3d.tar.gz
Fix build error
Diffstat (limited to 'js')
-rw-r--r--js/reveal.js2
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();