Browse Source

Focus title input when clicking helper link (#4696)

master
Julien Tant Lauris BH 6 years ago
parent
commit
e6777f7b9d
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      public/js/index.js

+ 1
- 1
public/js/index.js View File

@@ -954,7 +954,6 @@ String.prototype.endsWith = function (pattern) {
}
})(jQuery);


function setSimpleMDE($editArea) {
if (codeMirrorEditor) {
codeMirrorEditor.toTextArea();
@@ -1660,6 +1659,7 @@ function initWipTitle() {
e.preventDefault();

var $issueTitle = $("#issue_title");
$issueTitle.focus();
var value = $issueTitle.val().trim().toUpperCase();

for (var i in wipPrefixes) {


Loading…
Cancel
Save