mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-02-03 04:19:06 +08:00
FIX: can't close leaderboards using keyboard (Esc)
This commit is contained in:
parent
c6a7d934ef
commit
6144b52e0d
1 changed files with 5 additions and 1 deletions
|
@ -1351,7 +1351,11 @@ $(document).ready((e) => {
|
|||
//escape
|
||||
if ((event.keyCode == 27 && !config.swapEscAndTab) || (event["keyCode"] == 9 && config.swapEscAndTab)) {
|
||||
event.preventDefault();
|
||||
if ($("#commandLineWrapper").hasClass("hidden")) {
|
||||
if (!$("#leaderboardsWrapper").hasClass("hidden")) { //maybe add more condition for closing other dialogs in the future as well
|
||||
event.preventDefault();
|
||||
hideLeaderboards();
|
||||
return;
|
||||
} else if ($("#commandLineWrapper").hasClass("hidden")) {
|
||||
currentCommands = [commands];
|
||||
showCommandLine();
|
||||
} else {
|
||||
|
|
Loading…
Reference in a new issue