From 1065dabbd128f3ae99464f9b8ab5c91b843244ae Mon Sep 17 00:00:00 2001 From: Jack Date: Wed, 2 Dec 2020 14:40:41 +0000 Subject: [PATCH] made sure to check if no space is active --- src/js/script.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/js/script.js b/src/js/script.js index d435a9115..c894f6acd 100644 --- a/src/js/script.js +++ b/src/js/script.js @@ -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),