Parcourir la source

Listen to custom mapped togglePause keys

This resolves issue #941
David Banham il y a 10 ans
Parent
commit
a078c87f10
2 fichiers modifiés avec 8 ajouts et 3 suppressions
  1. 7 2
      js/reveal.js
  2. 1 1
      js/reveal.min.js

+ 7 - 2
js/reveal.js

@@ -2658,8 +2658,13 @@ var Reveal = (function(){
 		// keyboard modifier key is present
 		if( hasFocus || (event.shiftKey && event.keyCode !== 32) || event.altKey || event.ctrlKey || event.metaKey ) return;
 
-		// While paused only allow "unpausing" keyboard events (b and .)
-		if( isPaused() && [66,190,191].indexOf( event.keyCode ) === -1 ) {
+		// While paused only allow "unpausing" keyboard events ('b', '.' or any key specifically mapped to togglePause )
+		var allowedKeys = [66,190,191].concat(Object.keys(config.keyboard).map(function(key){
+			if (config.keyboard[key] === 'togglePause') {
+				return parseInt(key, 10);
+			}
+		}));
+		if( isPaused() && allowedKeys.indexOf( event.keyCode ) === -1 ) {
 			return false;
 		}
 

Fichier diff supprimé car celui-ci est trop grand
+ 1 - 1
js/reveal.min.js


Certains fichiers n'ont pas été affichés car il y a eu trop de fichiers modifiés dans ce diff