소스 검색

fix order of options extend and listener binding (closes #102)

Hakim El Hattab 12 년 전
부모
커밋
aca177cdf8
1개의 변경된 파일4개의 추가작업 그리고 3개의 파일을 삭제
  1. 4 3
      js/reveal.js

+ 4 - 3
js/reveal.js

@@ -124,11 +124,12 @@ var Reveal = (function(){
 			dom.controlsUp = document.querySelector( '.reveal .controls .up' );
 			dom.controlsDown = document.querySelector( '.reveal .controls .down' );
 		}
-
-		addEventListeners();
-
+		
 		// Copy options over to our config object
 		extend( config, options );
+		
+		// Subscribe to input
+		addEventListeners();
 
 		// Updates the presentation to match the current configuration values
 		configure();