made sure to check if no space is active

This commit is contained in:
Jack 2020-12-02 14:40:41 +00:00
parent f35415f296
commit 1065dabbd1

View file

@ -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),