aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHakim El Hattab <hakim.elhattab@gmail.com>2019-04-01 13:11:29 +0200
committerHakim El Hattab <hakim.elhattab@gmail.com>2019-04-01 13:11:29 +0200
commite6fa04d4854244ed85f82804093f0ca450014932 (patch)
tree1e14b82ac213c7c15c06a89b548698cedffed732
parent94cbfcbdf62da9a10c5d6c3c90e2e8fc65b8b95b (diff)
downloadperl-software-in-gnu-guix-e6fa04d4854244ed85f82804093f0ca450014932.tar
perl-software-in-gnu-guix-e6fa04d4854244ed85f82804093f0ca450014932.tar.gz
fix typos
-rw-r--r--js/reveal.js28
-rw-r--r--package.json2
2 files changed, 16 insertions, 14 deletions
diff --git a/js/reveal.js b/js/reveal.js
index 0eebeb6..7902546 100644
--- a/js/reveal.js
+++ b/js/reveal.js
@@ -146,8 +146,8 @@
// 1.3 2.3
//
// If you're on slide 1.3 and navigate right, you will normally move
- // from 1.3 -> 2.1. With "gridNavigation" enabled the same navigation
- // takes you from 1.3 -> 2.3.
+ // from 1.3 -> 2.1. If "grid" is used, the same navigation takes you
+ // from 1.3 -> 2.3.
navigationMode: 'default',
// Randomizes the order of slides each time the presentation loads
@@ -374,7 +374,8 @@
threshold: 40
},
- // Holds information about the keyboard shortcuts (filled in on configuration).
+ // A key:value map of shortcut keyboard keys and descriptions of
+ // the actions they trigger, generated in #configure()
keyboardShortcuts = {},
// Holds custom key code mappings
@@ -1432,24 +1433,25 @@
dom.wrapper.removeAttribute( 'data-navigation-mode' );
}
-
+ // Define our contextual list of keyboard shortcuts
if( config.navigationMode === 'linear' ) {
- keyboardShortcuts['N , SPACE , &#8594; , L , &#8595; , J'] = 'Next slide';
- keyboardShortcuts['P , &#8592; , H , &#8593; , K'] = 'Previous slide';
+ keyboardShortcuts['&#8594; , &#8595; , SPACE , N , L , J'] = 'Next slide';
+ keyboardShortcuts['&#8592; , &#8593; , P , H , K'] = 'Previous slide';
}
else {
- keyboardShortcuts['N , SPACE'] = 'Next slide';
- keyboardShortcuts['P'] = 'Previous slide';
+ 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';
+ keyboardShortcuts['End , &#8984;/CTRL &#8594;'] = 'Last slide';
+ keyboardShortcuts['B , .'] = 'Pause';
+ keyboardShortcuts['F'] = 'Fullscreen';
+ keyboardShortcuts['ESC, O'] = 'Slide overview';
sync();
@@ -4354,7 +4356,7 @@
if( config.history || !window.history ) {
window.location.hash = locationHash();
}
- // If we're configured to refelct the current slide in the
+ // If we're configured to reflect the current slide in the
// URL without pushing to history.
else if( config.hash ) {
window.history.replaceState( null, null, '#' + locationHash() );
diff --git a/package.json b/package.json
index a7cc0b6..cd6ccbe 100644
--- a/package.json
+++ b/package.json
@@ -24,7 +24,7 @@
},
"devDependencies": {
"express": "^4.16.2",
- "grunt": "^1.0.4",
+ "grunt": "^1.0.3",
"grunt-cli": "^1.3.2",
"grunt-autoprefixer": "^3.0.4",
"grunt-contrib-connect": "^2.0.0",