From fb6adc765ffbe14c7adf6a717037d06e41f2ddd4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Scott=20Gonz=C3=A1lez?= Date: Sat, 16 Mar 2013 15:27:56 -0400 Subject: [PATCH] Autocomplete demo (combobox): Hide select on create. Fixes #9158 - Autocomplete Combobox demo shows underlying select by default. (cherry picked from commit 4202ad07187e15a3b2e64277e170daf9b278c3b4) --- demos/autocomplete/combobox.html | 1 + 1 file changed, 1 insertion(+) diff --git a/demos/autocomplete/combobox.html b/demos/autocomplete/combobox.html index 69be7022060..5c74317e283 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(); },