aboutsummaryrefslogtreecommitdiff
path: root/plugin
diff options
context:
space:
mode:
authorGreg Denehy <greg@inclose.com.au>2017-04-30 16:35:35 +0930
committerGreg Denehy <greg@inclose.com.au>2017-04-30 16:35:35 +0930
commite48e1e19b97d99de107966dd3f8c431a89457972 (patch)
tree3d95b9dca8afeed37cc5fb16a3213d0541c7d355 /plugin
parent8bf9986fa21c89b9b38145b43e6fe572c3acebd5 (diff)
downloadperl-software-in-gnu-guix-e48e1e19b97d99de107966dd3f8c431a89457972.tar
perl-software-in-gnu-guix-e48e1e19b97d99de107966dd3f8c431a89457972.tar.gz
Changed custom key binding config properties to use 'keyCode' instead of 'code'
Diffstat (limited to 'plugin')
-rw-r--r--plugin/notes/notes.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/notes/notes.js b/plugin/notes/notes.js
index 8980fb4..6373d97 100644
--- a/plugin/notes/notes.js
+++ b/plugin/notes/notes.js
@@ -106,7 +106,7 @@ var RevealNotes = (function() {
}
// Open the notes when the 's' key is hit
- Reveal.addKeyBinding({code: 83, key: 'S', description: 'Speaker notes'}, openNotes);
+ Reveal.addKeyBinding({keyCode: 83, key: 'S', description: 'Speaker notes'}, openNotes);
}