aboutsummaryrefslogtreecommitdiffstats
path: root/demos/autocomplete/combobox.html
diff options
context:
space:
mode:
authorScott González <scott.gonzalez@gmail.com>2010-01-15 18:58:20 +0000
committerScott González <scott.gonzalez@gmail.com>2010-01-15 18:58:20 +0000
commit7d96a0d0966d9e680c968db2869900ac624a44ad (patch)
tree88076c2f23bb64749d7af87bc26991798dcff915 /demos/autocomplete/combobox.html
parentab153e07c78098567b9f1e53deb9145bcd6c22d3 (diff)
downloadjquery-ui-7d96a0d0966d9e680c968db2869900ac624a44ad.tar.gz
jquery-ui-7d96a0d0966d9e680c968db2869900ac624a44ad.zip
Widget factory: Changed _create to _init.
Partial fix for #5064 - Widget: make multiple instantiation more useful.
Diffstat (limited to 'demos/autocomplete/combobox.html')
-rw-r--r--demos/autocomplete/combobox.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/demos/autocomplete/combobox.html b/demos/autocomplete/combobox.html
index 88e4105e7..bf2d48bb0 100644
--- a/demos/autocomplete/combobox.html
+++ b/demos/autocomplete/combobox.html
@@ -13,7 +13,7 @@
<script type="text/javascript">
(function($) {
$.widget("ui.combobox", {
- _init: function() {
+ _create: function() {
var self = this;
var select = this.element.hide();
var input = $("<input>")