diff options
author | Hakim El Hattab | 2013-02-03 01:31:27 -0500 |
---|---|---|
committer | Hakim El Hattab | 2013-02-03 01:31:27 -0500 |
commit | d182235f1fca671498ac354a9507c19f1c7dbe5a (patch) | |
tree | 6d079682851482dcb929bd4dd23f33c144e039f4 /js/reveal.js | |
parent | abf9ddb588c11bd0591b4835c5adcb77609fa1ce (diff) |
code cosmetics
Diffstat (limited to 'js/reveal.js')
-rw-r--r-- | js/reveal.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/js/reveal.js b/js/reveal.js index ccb009f..8092526 100644 --- a/js/reveal.js +++ b/js/reveal.js @@ -1545,12 +1545,12 @@ var Reveal = (function(){ // Disregard the event if there's a focused element or a // keyboard modifier key is present - if ( hasFocus || event.shiftKey || event.altKey || event.ctrlKey || event.metaKey ) return; + if( hasFocus || event.shiftKey || event.altKey || event.ctrlKey || event.metaKey ) return; var triggered = true; // while paused only allow "unpausing" keyboard events (b and .) - if (isPaused() && [66,190,191].indexOf(event.keyCode) === -1 ) { + if( isPaused() && [66,190,191].indexOf( event.keyCode ) === -1 ) { return false; } |