adjust list of displayed key shortcuts #943
This commit is contained in:
22
js/reveal.js
22
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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user