Fix build error

This commit is contained in:
MichiK 2015-11-19 13:51:22 +01:00
parent 4a45557b57
commit a398a02edb
1 changed files with 1 additions and 1 deletions

View File

@ -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();