diff options
author | Scott González <scott.gonzalez@gmail.com> | 2013-03-16 15:27:56 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2013-03-16 15:27:56 -0400 |
commit | 4202ad07187e15a3b2e64277e170daf9b278c3b4 (patch) | |
tree | 7aeffc8914674d422cf4f6821f11bc6ee770d0ab /demos/autocomplete | |
parent | 9d8af804ad4cebe434d420b29467c596809a7cca (diff) | |
download | jquery-ui-4202ad07187e15a3b2e64277e170daf9b278c3b4.tar.gz jquery-ui-4202ad07187e15a3b2e64277e170daf9b278c3b4.zip |
Autocomplete demo (combobox): Hide select on create. Fixes #9158 - Autocomplete Combobox demo shows underlying select by default.
Diffstat (limited to 'demos/autocomplete')
-rw-r--r-- | demos/autocomplete/combobox.html | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/demos/autocomplete/combobox.html b/demos/autocomplete/combobox.html index 69be70220..5c74317e2 100644 --- a/demos/autocomplete/combobox.html +++ b/demos/autocomplete/combobox.html @@ -41,6 +41,7 @@ .addClass( "ui-combobox" ) .insertAfter( this.element ); + this.element.hide(); this._createAutocomplete(); this._createShowAllButton(); }, |