diff options
author | Minteck <46352972+Minteck@users.noreply.github.com> | 2021-07-20 01:30:23 +0200 |
---|---|---|
committer | Minteck <46352972+Minteck@users.noreply.github.com> | 2021-07-20 01:30:23 +0200 |
commit | 44210691ee8444509ac466a362337af77f2bcd49 (patch) | |
tree | 4dc2f242cf5fd4daa3fc6f9e42516e7d55b73538 /online | |
parent | efa5fc926071de7087836d399c42f53e701b4cff (diff) | |
download | kartik-client-44210691ee8444509ac466a362337af77f2bcd49.tar.gz kartik-client-44210691ee8444509ac466a362337af77f2bcd49.tar.bz2 kartik-client-44210691ee8444509ac466a362337af77f2bcd49.zip |
Commit
Diffstat (limited to 'online')
-rw-r--r-- | online/global.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/online/global.js b/online/global.js index 0e4fe32..febe8ab 100644 --- a/online/global.js +++ b/online/global.js @@ -357,7 +357,7 @@ function checkOnlineLogin() { } $("#theirid").keydown(function(e) { - if (e.keyCode === 27 || e.keyCode === 8) { // esc + if (e.keyCode === 27) { // esc $("body").fadeOut(200); setTimeout(() => { location.href = "menu.html?back"; |