mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-02-05 13:27:49 +08:00
made sure to check if no space is active
This commit is contained in:
parent
f35415f296
commit
1065dabbd1
1 changed files with 4 additions and 1 deletions
|
@ -4727,7 +4727,10 @@ $(document).keydown(function (event) {
|
|||
activeWordTopBeforeJump = activeWordTop;
|
||||
compareInput(!config.blindMode);
|
||||
|
||||
if (currentInput.length === wordsList[currentWordIndex].length) {
|
||||
if (
|
||||
activeFunBox === "no_space" &&
|
||||
currentInput.length === wordsList[currentWordIndex].length
|
||||
) {
|
||||
jQuery.event.trigger({
|
||||
type: "keydown",
|
||||
which: " ".charCodeAt(0),
|
||||
|
|
Loading…
Reference in a new issue