mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-10-31 20:44:07 +00:00
8c2559a726
Fix: [#25055](https://github.com/go-gitea/gitea/issues/25055) Before ![image](https://github.com/go-gitea/gitea/assets/37935145/1b89cd7b-4fa3-49aa-9b5e-a8413add436e) After ![image](https://github.com/go-gitea/gitea/assets/37935145/fa808f8d-d3ce-4245-a4fe-dd0282ba3fdf) ps: I've noticed that we are gradually replacing jQuery, so I didn't use jQuery here. (cherry picked from commit 1261dd6742fb7095e51c173ca4641477d81a3634)
7 lines
287 B
JavaScript
7 lines
287 B
JavaScript
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);
|
|
}
|
|
}
|