diff --git a/src/js/input-controller.js b/src/js/input-controller.js index 29ad470c7..af0dade58 100644 --- a/src/js/input-controller.js +++ b/src/js/input-controller.js @@ -355,6 +355,10 @@ function handleChar(char, charIndex) { } } + if (TestLogic.words.getCurrent()[charIndex] !== "\n" && char === "\n") { + return; + } + //start the test if (!TestLogic.active && !TestLogic.startTest()) { return;