From 8abc65c67898742041d0049630f92cea4e68e50a Mon Sep 17 00:00:00 2001 From: Jack Date: Mon, 20 Jul 2020 15:26:08 +0100 Subject: [PATCH] fixed a bug where ] could not be inputted --- public/js/script.js | 1 - 1 file changed, 1 deletion(-) diff --git a/public/js/script.js b/public/js/script.js index 62ac75260..f8cfecf23 100644 --- a/public/js/script.js +++ b/public/js/script.js @@ -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) {