aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--public/js/gogs.js5
1 files changed, 5 insertions, 0 deletions
diff --git a/public/js/gogs.js b/public/js/gogs.js
index 9f8783cb..a96d35ff 100644
--- a/public/js/gogs.js
+++ b/public/js/gogs.js
@@ -1153,6 +1153,11 @@ function initWebhookSettings() {
$(document).ready(function () {
csrf = $('meta[name=_csrf]').attr("content");
suburl = $('meta[name=_suburl]').attr("content");
+
+ // Set cursor to the end of autofocus input string
+ $('input[autofocus]').each(function () {
+ $(this).val($(this).val());
+ })
// Show exact time
$('.time-since').each(function () {