aboutsummaryrefslogtreecommitdiff
path: root/js/reveal.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/reveal.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',
+ '← , H': 'Navigate left',
+ '→ , L': 'Navigate right',
+ '↑ , K': 'Navigate up',
+ '↓ , 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;
}