allowing enter to move to the next number with accountant mode enabled

This commit is contained in:
Jack 2020-12-17 16:37:21 +00:00
parent 0757c11d71
commit 74eb2b818f

View file

@ -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();