aboutsummaryrefslogtreecommitdiffstats
path: root/demos/autocomplete
diff options
context:
space:
mode:
authorScott González <scott.gonzalez@gmail.com>2013-03-16 15:27:56 -0400
committerScott González <scott.gonzalez@gmail.com>2013-03-16 15:27:56 -0400
commit4202ad07187e15a3b2e64277e170daf9b278c3b4 (patch)
tree7aeffc8914674d422cf4f6821f11bc6ee770d0ab /demos/autocomplete
parent9d8af804ad4cebe434d420b29467c596809a7cca (diff)
downloadjquery-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.html1
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();
},