diff options
author | Scott González <scott.gonzalez@gmail.com> | 2010-02-20 01:38:30 +0000 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2010-02-20 01:38:30 +0000 |
commit | 8185ba0207bbde20e8e9d31470538042b3e49016 (patch) | |
tree | 89b87de1f37194562e29a97f052d6b22b36fc54f /ui/jquery.ui.autocomplete.js | |
parent | 0292c347bb15aab05f5e96957e30d6835152fffe (diff) | |
download | jquery-ui-8185ba0207bbde20e8e9d31470538042b3e49016.tar.gz jquery-ui-8185ba0207bbde20e8e9d31470538042b3e49016.zip |
Autocomplete: Added a "ui-autocomplete-input" class to the text field.
Fixes #5198 - Autocomplete: class needed on input element.
Diffstat (limited to 'ui/jquery.ui.autocomplete.js')
-rw-r--r-- | ui/jquery.ui.autocomplete.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ui/jquery.ui.autocomplete.js b/ui/jquery.ui.autocomplete.js index 2fc893cab..0d89d2047 100644 --- a/ui/jquery.ui.autocomplete.js +++ b/ui/jquery.ui.autocomplete.js @@ -22,6 +22,7 @@ $.widget( "ui.autocomplete", { _create: function() { var self = this; this.element + .addClass( "ui-autocomplete-input" ) .attr( "autocomplete", "off" ) // TODO verify these actually work as intended .attr({ |