Преглед изворни кода

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

Fixed #1379 - config keyboard now disables 's' key
Hakim El Hattab пре 9 година
родитељ
комит
a5181e4372
1 измењених фајлова са 3 додато и 0 уклоњено
  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();