Focus on the textarea after clicking the Edit Journal button - like with issues https://www.redmine.org/issues/40556

This commit is contained in:
Alexander Meindl 2024-04-30 16:14:17 +02:00
parent 6367b3d8d1
commit 26db5aba63

View File

@ -6,3 +6,13 @@ if ($("form#journal-<%= @journal.id %>-form").length > 0) {
} else {
$("#journal-<%= @journal.id %>-notes").after("<%= escape_javascript(render 'notes_form') %>");
}
// Focus on the textarea
(() => {
const textarea = $("#journal-<%= @journal.id %>-form .wiki-edit");
if (textarea.length > 0) {
textarea.focus();
const textareaLength = textarea.val().length;
textarea.get(0).setSelectionRange(textareaLength, textareaLength);
}
})();