We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2e05cab commit d161c7fCopy full SHA for d161c7f
1 file changed
src/input/keyboard/KeyboardManager.js
@@ -72,7 +72,7 @@ var KeyboardManager = new Class({
72
* An array of Key Code values that will automatically have `preventDefault` called on them,
73
* as long as the `KeyboardManager.preventDefault` boolean is set to `true`.
74
*
75
- * By default the array contains: The Space Key, the Cursor Keys, 0 to 9 and A to Z.
+ * By default the array is empty.
76
77
* The key must be non-modified when pressed in order to be captured.
78
@@ -206,7 +206,7 @@ var KeyboardManager = new Class({
206
// Do nothing if event already handled
207
return;
208
}
209
-
+
210
_this.queue.push(event);
211
212
var modified = (event.altKey || event.ctrlKey || event.shiftKey || event.metaKey);
0 commit comments