소스 검색

Fix build error

MichiK 9 년 전
부모
커밋
a398a02edb
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      js/reveal.js

+ 1 - 1
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();