mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-02-05 21:33:40 +08:00
allowing enter to move to the next number with accountant mode enabled
This commit is contained in:
parent
0757c11d71
commit
74eb2b818f
1 changed files with 4 additions and 1 deletions
|
@ -4557,7 +4557,10 @@ $(document).keydown((event) => {
|
|||
updateCaretPosition();
|
||||
}
|
||||
//space
|
||||
if (event.key === " ") {
|
||||
if (
|
||||
event.key === " " ||
|
||||
(activeFunBox == "58008" && event.key === "Enter")
|
||||
) {
|
||||
if (!testActive) return;
|
||||
if (currentInput === "") return;
|
||||
event.preventDefault();
|
||||
|
|
Loading…
Reference in a new issue