Skip to content

Commit a398a02

Browse files
committed
Fix build error
1 parent 4a45557 commit a398a02

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

js/reveal.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3689,7 +3689,7 @@
36893689
// - The presentation isn't over
36903690
if( autoSlide && !autoSlidePaused && !isPaused() && !isOverview() && ( !Reveal.isLastSlide() || availableFragments().next || config.loop === true ) ) {
36913691
autoSlideTimeout = setTimeout( function() {
3692-
typeof config.autoSlideMethod == 'function' ? config.autoSlideMethod() : navigateNext();
3692+
typeof config.autoSlideMethod === 'function' ? config.autoSlideMethod() : navigateNext();
36933693
cueAutoSlide();
36943694
}, autoSlide );
36953695
autoSlideStartTime = Date.now();

0 commit comments

Comments
 (0)