aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZach DeCook <zdecook@ccel.org>2019-02-19 17:29:07 -0500
committerZach DeCook <zdecook@ccel.org>2019-02-19 17:29:07 -0500
commitbb4eeb6c3ce10528f22269a022d713ce5f5a1841 (patch)
treefb5c3ae8c45811b5dcd3a3de248ef3e0f2f206fc
parent1efb8260af1c743713061821633e154602361d54 (diff)
downloadperl-software-in-gnu-guix-bb4eeb6c3ce10528f22269a022d713ce5f5a1841.tar
perl-software-in-gnu-guix-bb4eeb6c3ce10528f22269a022d713ce5f5a1841.tar.gz
* Keyboard Shortcuts table: Dynamically fill object at configuration
-rw-r--r--js/reveal.js35
1 files changed, 21 insertions, 14 deletions
diff --git a/js/reveal.js b/js/reveal.js
index 237c0c4..6f572b0 100644
--- a/js/reveal.js
+++ b/js/reveal.js
@@ -361,20 +361,8 @@
threshold: 40
},
- // Holds information about the keyboard shortcuts
- keyboardShortcuts = {
- 'N , SPACE': 'Next slide',
- 'P': 'Previous slide',
- '&#8592; , H': 'Navigate left',
- '&#8594; , L': 'Navigate right',
- '&#8593; , K': 'Navigate up',
- '&#8595; , J': 'Navigate down',
- 'Home , &#8984;/CTRL &#8592;': 'First slide',
- 'End , &#8984;/CTRL &#8594;': 'Last slide',
- 'B , .': 'Pause',
- 'F': 'Fullscreen',
- 'ESC, O': 'Slide overview'
- },
+ // Holds information about the keyboard shortcuts (filled in on configuration).
+ keyboardShortcuts = {},
// Holds custom key code mappings
registeredKeyBindings = {};
@@ -1386,6 +1374,25 @@
dom.wrapper.removeAttribute( 'data-navigation-mode' );
}
+
+ if( config.navigationMode === 'linear' ) {
+ keyboardShortcuts['N , SPACE , &#8594; , L , &#8595; , J'] = 'Next slide';
+ keyboardShortcuts['P , &#8592; , H , &#8593; , K'] = 'Previous slide';
+ }
+ else {
+ keyboardShortcuts['N , SPACE'] = 'Next slide';
+ keyboardShortcuts['P'] = 'Previous slide';
+ keyboardShortcuts['&#8592; , H'] = 'Navigate left';
+ keyboardShortcuts['&#8594; , L'] = 'Navigate right';
+ keyboardShortcuts['&#8593; , K'] = 'Navigate up';
+ keyboardShortcuts['&#8595; , J'] = 'Navigate down';
+ }
+ keyboardShortcuts['Home , &#8984;/CTRL &#8592;'] = 'First slide';
+ keyboardShortcuts['End , &#8984;/CTRL &#8594;'] = 'Last slide';
+ keyboardShortcuts['B , .'] = 'Pause';
+ keyboardShortcuts['F'] = 'Fullscreen';
+ keyboardShortcuts['ESC, O'] = 'Slide overview';
+
sync();
}