diff options
author | Johannes Schleifenbaum <johannes@js-webcoding.de> | 2013-06-09 18:36:08 +0200 |
---|---|---|
committer | Johannes Schleifenbaum <johannes@js-webcoding.de> | 2013-06-09 19:09:14 +0200 |
commit | e898994508335cdda751cb1e9463a0b59a3b90e9 (patch) | |
tree | 4cba34dd4e1cc6e1cbe1e437e958d299884e4a5f /app/views/issues | |
parent | 05bc65895c083cf89e44e72c80918cda761cfaa1 (diff) | |
download | gitlab-ce-e898994508335cdda751cb1e9463a0b59a3b90e9.tar.gz |
Open the issue tag list on click
Diffstat (limited to 'app/views/issues')
-rw-r--r-- | app/views/issues/_form.html.haml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/app/views/issues/_form.html.haml b/app/views/issues/_form.html.haml index 2bb5e6ca5ac..936f9ead3ea 100644 --- a/app/views/issues/_form.html.haml +++ b/app/views/issues/_form.html.haml @@ -64,6 +64,9 @@ event.preventDefault(); } }) + .bind( "click", function( event ) { + $( this ).autocomplete("search", ""); + }) .autocomplete({ minLength: 0, source: function( request, response ) { |