Explorar el Código

Merge pull request #1391 from rohithpr/notes-key-binding

Fixed #1379 - config keyboard now disables 's' key
Hakim El Hattab hace 9 años
padre
commit
a5181e4372
Se han modificado 1 ficheros con 3 adiciones y 0 borrados
  1. 3 0
      plugin/notes/notes.js

+ 3 - 0
plugin/notes/notes.js

@@ -111,6 +111,9 @@ var RevealNotes = (function() {
 			// modifier is present
 			if ( document.querySelector( ':focus' ) !== null || event.shiftKey || event.altKey || event.ctrlKey || event.metaKey ) return;
 
+			// Disregard the event if keyboard is disabled
+			if ( Reveal.getConfig().keyboard === false ) return;
+
 			if( event.keyCode === 83 ) {
 				event.preventDefault();
 				openNotes();