mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-02-03 12:29:46 +08:00
fixed a bug where ] could not be inputted
This commit is contained in:
parent
0c9d5df30b
commit
8abc65c678
1 changed files with 0 additions and 1 deletions
|
@ -2400,7 +2400,6 @@ $(document).keypress(function (event) {
|
|||
if (event["keyCode"] == 13) return;
|
||||
if (event["keyCode"] == 32) return;
|
||||
if (event["keyCode"] == 27) return;
|
||||
if (event["keyCode"] == 93) return;
|
||||
if (event.key == "ContextMenu") return;
|
||||
//start the test
|
||||
if (currentInput == "" && inputHistory.length == 0 && !testActive) {
|
||||
|
|
Loading…
Reference in a new issue