aboutsummaryrefslogtreecommitdiff
path: root/js/reveal.js
diff options
context:
space:
mode:
authorHakim El Hattab <hakim.elhattab@gmail.com>2013-02-03 01:31:27 -0500
committerHakim El Hattab <hakim.elhattab@gmail.com>2013-02-03 01:31:27 -0500
commitd182235f1fca671498ac354a9507c19f1c7dbe5a (patch)
tree6d079682851482dcb929bd4dd23f33c144e039f4 /js/reveal.js
parentabf9ddb588c11bd0591b4835c5adcb77609fa1ce (diff)
downloadfreenode-live-2017-presentation-d182235f1fca671498ac354a9507c19f1c7dbe5a.tar
freenode-live-2017-presentation-d182235f1fca671498ac354a9507c19f1c7dbe5a.tar.gz
code cosmetics
Diffstat (limited to 'js/reveal.js')
-rw-r--r--js/reveal.js4
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;
}