From a398a02edb19ad73d0bebcd5c3bd5334bc05ff3d Mon Sep 17 00:00:00 2001 From: MichiK Date: Thu, 19 Nov 2015 13:51:22 +0100 Subject: [PATCH] Fix build error --- js/reveal.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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();