ソースを参照

Pass through key event when calling keyboardCondition() to allow conditional function to filter on key codes

Greg Denehy 7 年 前
コミット
8bf9986fa2
1 ファイル変更1 行追加1 行削除
  1. 1 1
      js/reveal.js

+ 1 - 1
js/reveal.js

@@ -3940,7 +3940,7 @@
 
 		// If there's a condition specified and it returns false,
 		// ignore this event
-		if( typeof config.keyboardCondition === 'function' && config.keyboardCondition() === false ) {
+		if( typeof config.keyboardCondition === 'function' && config.keyboardCondition(event) === false ) {
 			return true;
 		}