diff options
author | Greg Denehy | 2017-04-30 16:35:35 +0930 |
---|---|---|
committer | Greg Denehy | 2017-04-30 16:35:35 +0930 |
commit | e48e1e19b97d99de107966dd3f8c431a89457972 (patch) | |
tree | 3d95b9dca8afeed37cc5fb16a3213d0541c7d355 | |
parent | 8bf9986fa21c89b9b38145b43e6fe572c3acebd5 (diff) |
Changed custom key binding config properties to use 'keyCode' instead of 'code'
-rw-r--r-- | js/reveal.js | 4 | ||||
-rw-r--r-- | plugin/notes/notes.js | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/js/reveal.js b/js/reveal.js index 9d4444f..328edb0 100644 --- a/js/reveal.js +++ b/js/reveal.js @@ -1098,8 +1098,8 @@ * Add a custom key binding with optional description to be added to the help screen */ function addKeyBinding(binding, callback) { - if (typeof binding === 'object' && binding.code) { - registeredKeyBindings[binding.code] = { + if (typeof binding === 'object' && binding.keyCode) { + registeredKeyBindings[binding.keyCode] = { callback: callback, key: binding.key, description: binding.description 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); } |