From 6215b12f6ee559c91c2b82be9f98d91f42af9ee7 Mon Sep 17 00:00:00 2001 From: Hakim El Hattab Date: Sat, 21 Dec 2013 18:12:02 +0100 Subject: naming/comment tweak --- js/reveal.js | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'js/reveal.js') diff --git a/js/reveal.js b/js/reveal.js index be7b8a8..9d389c5 100644 --- a/js/reveal.js +++ b/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; } -- cgit v1.2.3