diff options
Diffstat (limited to 'web_src/js/features/autofocus-end.ts')
-rw-r--r-- | web_src/js/features/autofocus-end.ts | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/web_src/js/features/autofocus-end.ts b/web_src/js/features/autofocus-end.ts new file mode 100644 index 0000000000..da71ce9536 --- /dev/null +++ b/web_src/js/features/autofocus-end.ts @@ -0,0 +1,6 @@ +export function initAutoFocusEnd() { + for (const el of document.querySelectorAll('.js-autofocus-end')) { + el.focus(); // expects only one such element on one page. If there are many, then the last one gets the focus. + el.setSelectionRange(el.value.length, el.value.length); + } +} |