瀏覽代碼

naming/comment tweak

Hakim El Hattab 11 年之前
父節點
當前提交
6215b12f6e
共有 2 個文件被更改,包括 5 次插入4 次删除
  1. 4 3
      js/reveal.js
  2. 1 1
      js/reveal.min.js

+ 4 - 3
js/reveal.js

@@ -2698,8 +2698,9 @@ var Reveal = (function(){
 	 */
 	function onDocumentKeyDown( event ) {
 
-		// store auto slide value to be able to toggle auto sliding
-		var currentAutoSlideValue = autoSlidePaused;
+		// Remember if auto-sliding was paused so we can toggle it
+		var autoSlideWasPaused = autoSlidePaused;
+
 		onUserInput( event );
 
 		// Check if there's a focused element that could be using
@@ -2777,7 +2778,7 @@ var Reveal = (function(){
 				// f
 				case 70: enterFullscreen(); break;
 				// a
-				case 65: if ( config.autoSlideStoppable ) toggleAutoSlide( currentAutoSlideValue ); break;
+				case 65: if ( config.autoSlideStoppable ) toggleAutoSlide( autoSlideWasPaused ); break;
 				default:
 					triggered = false;
 			}

+ 1 - 1
js/reveal.min.js

@@ -1,5 +1,5 @@
 /*!
- * reveal.js 2.6.1 (2013-12-21, 17:53)
+ * reveal.js 2.6.1 (2013-12-21, 18:11)
  * http://lab.hakim.se/reveal-js
  * MIT licensed
  *