Commit 1b49ae2e310db06b79808e7064be392a147f0be2

Authored by Dmitriy Zaporozhets
2 parents 1f26c46a e8989945

Merge pull request #4259 from jojosch/fix/issue-label-autocomlete-on-click

Open the issue tag list on click
Showing 1 changed file with 3 additions and 0 deletions   Show diff stats
app/views/issues/_form.html.haml
... ... @@ -64,6 +64,9 @@
64 64 event.preventDefault();
65 65 }
66 66 })
  67 + .bind( "click", function( event ) {
  68 + $( this ).autocomplete("search", "");
  69 + })
67 70 .autocomplete({
68 71 minLength: 0,
69 72 source: function( request, response ) {
... ...