This commit is contained in:
2025-10-19 21:00:31 -04:00
parent 2a57e324ca
commit d7523f3e67
7 changed files with 11 additions and 8 deletions

View File

@@ -14,6 +14,7 @@
const focusDe = document.getElementById(`${idx}_de`);
if (focusDe) {
focusDe.select();
focusDe.scrollIntoView({block: "end"});
}
}

View File

@@ -13,6 +13,7 @@
const focusWt = document.getElementById(`${idx}_wt`);
if (focusWt) {
focusWt.select();
focusWt.scrollIntoView({block: "end"});
}
}

View File

@@ -13,6 +13,7 @@
const focusFn = document.getElementById(`${idx}_fn`);
if (focusFn) {
focusFn.select();
focusFn.scrollIntoView({block: "end"});
}
}