set expr as default input

This commit is contained in:
filifa 2025-12-11 23:49:34 -05:00
parent 20c793b31b
commit 972513ea75
1 changed files with 3 additions and 3 deletions

View File

@ -32,9 +32,9 @@ function evaluate() {
} }
} }
let currentInput = null; let currentInput = document.querySelector("#expr");
let selectionStart = null; let selectionStart = 0;
let selectionEnd = null; let selectionEnd = 0;
function setCurrentInput() { function setCurrentInput() {
currentInput = this; currentInput = this;