commit | 39f722527b62520eb8eb348bf85e82fab1330747 | [log] [tgz] |
---|---|---|
author | Tyler Scott <tyduptyler13@gmail.com> | Fri Aug 07 16:21:45 2015 -0600 |
committer | Tyler Scott <tyduptyler13@gmail.com> | Mon Aug 10 15:25:29 2015 -0600 |
tree | 134c29f92dd7584830e57a28c6607614e21c83b4 | |
parent | 038548515a14755ff68bb5a85110bb22f4986691 [diff] |
Fixed clicking with the autocomplete. Change-Id: I0e67ea776884fe45edb422ddc9c5b0695e1cce59
diff --git a/client/catalog/js/autocomplete.js b/client/catalog/js/autocomplete.js index ea71fa0..8ad97fb 100644 --- a/client/catalog/js/autocomplete.js +++ b/client/catalog/js/autocomplete.js
@@ -70,7 +70,7 @@ } element.bind('click', 'a', function(){ - input.val($(this).text()); + input.val($(event.target).text()); }); this.keydown(function(e){