summaryrefslogtreecommitdiffstats
path: root/app/views
diff options
context:
space:
mode:
authorMarius Balteanu <marius.balteanu@zitec.com>2024-04-29 19:10:56 +0000
committerMarius Balteanu <marius.balteanu@zitec.com>2024-04-29 19:10:56 +0000
commitc3e89fbabe6bf30643e155c635b242677eebaf69 (patch)
treebf520984c71227015917ee9eabace6998b7b48ce /app/views
parent383d9ae6c7ddf1d117f62abb116bb77e34fc152e (diff)
downloadredmine-c3e89fbabe6bf30643e155c635b242677eebaf69.tar.gz
redmine-c3e89fbabe6bf30643e155c635b242677eebaf69.zip
Merged r22791 from trunk to 5.1-stable (#40556).
git-svn-id: https://svn.redmine.org/redmine/branches/5.1-stable@22794 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views')
-rw-r--r--app/views/journals/edit.js.erb10
1 files changed, 10 insertions, 0 deletions
diff --git a/app/views/journals/edit.js.erb b/app/views/journals/edit.js.erb
index 96cf6b4f8..73631840f 100644
--- a/app/views/journals/edit.js.erb
+++ b/app/views/journals/edit.js.erb
@@ -6,3 +6,13 @@ if ($("form#journal-<%= @journal.id %>-form").length > 0) {
} else {
$("#journal-<%= @journal.id %>-notes").after('<%= escape_javascript(render :partial => '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);
+ }
+})();