fixed a bug where ] could not be inputted

This commit is contained in:
Jack 2020-07-20 15:26:08 +01:00
parent 0c9d5df30b
commit 8abc65c678

View file

@ -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) {