Commit 1b49ae2e310db06b79808e7064be392a147f0be2
Exists in
master
and in
4 other branches
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,6 +64,9 @@ | ||
64 | event.preventDefault(); | 64 | event.preventDefault(); |
65 | } | 65 | } |
66 | }) | 66 | }) |
67 | + .bind( "click", function( event ) { | ||
68 | + $( this ).autocomplete("search", ""); | ||
69 | + }) | ||
67 | .autocomplete({ | 70 | .autocomplete({ |
68 | minLength: 0, | 71 | minLength: 0, |
69 | source: function( request, response ) { | 72 | source: function( request, response ) { |