aboutsummaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorHakim El Hattab <hakim.elhattab@gmail.com>2014-06-09 17:53:14 +0200
committerHakim El Hattab <hakim.elhattab@gmail.com>2014-06-09 17:53:14 +0200
commit645734832dd264bb257a90256748cdf6f12a759f (patch)
tree8a0e960a7641a2f263f3b805d9a5b123322786f4 /js
parent9ff00a72ae0cbf96b3c12d515ccfb31dbbc2283f (diff)
downloadfreenode-live-2017-presentation-645734832dd264bb257a90256748cdf6f12a759f.tar
freenode-live-2017-presentation-645734832dd264bb257a90256748cdf6f12a759f.tar.gz
adjust list of displayed key shortcuts #943
Diffstat (limited to 'js')
-rw-r--r--js/reveal.js22
1 files changed, 11 insertions, 11 deletions
diff --git a/js/reveal.js b/js/reveal.js
index f32ee1f..3f56435 100644
--- a/js/reveal.js
+++ b/js/reveal.js
@@ -200,16 +200,17 @@
// Holds information about the keyboard shortcuts
keyboardShortcuts = {
- 'P': 'Previous slide',
- 'N': 'Next slide',
- 'H': 'Navigate left',
- 'L': 'Navigate right',
- 'K': 'Navigate up',
- 'J': 'Navigate down',
- 'Home': 'First slide',
- 'End': 'Last slide',
- 'b': 'Pause',
- 'f': 'Fullscreen'
+ 'N , SPACE': 'Next slide',
+ 'P': 'Previous slide',
+ '&#8592; , H': 'Navigate left',
+ '&#8594; , L': 'Navigate right',
+ '&#8593; , K': 'Navigate up',
+ '&#8595; , J': 'Navigate down',
+ 'Home': 'First slide',
+ 'End': 'Last slide',
+ 'B , .': 'Pause',
+ 'F': 'Fullscreen',
+ 'ESC, O': 'Slide overview'
};
/**
@@ -1319,7 +1320,6 @@
function closeOverlay() {
if( dom.overlay ) {
- dom.overlay.setAttribute( 'src', '' );
dom.overlay.parentNode.removeChild( dom.overlay );
dom.overlay = null;
}