aboutsummaryrefslogtreecommitdiffstats
path: root/demos
diff options
context:
space:
mode:
authorScott González <scott.gonzalez@gmail.com>2013-02-19 14:47:14 -0500
committerScott González <scott.gonzalez@gmail.com>2013-02-22 17:13:16 -0500
commit5546e76354e80adccddd8ccb29c9c6a746c9968b (patch)
treedc21f2da9de5ea01351a90ede70a6dc27f509a99 /demos
parentba96cb47725dc6639ae366bd381f089c1750c8f5 (diff)
downloadjquery-ui-5546e76354e80adccddd8ccb29c9c6a746c9968b.tar.gz
jquery-ui-5546e76354e80adccddd8ccb29c9c6a746c9968b.zip
Autocomplete demo (Combobox): Rename selected event to select.
Diffstat (limited to 'demos')
-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 c5ef93576..3e17a1dca 100644
--- a/demos/autocomplete/combobox.html
+++ b/demos/autocomplete/combobox.html
@@ -93,7 +93,7 @@
},
select: function( event, ui ) {
ui.item.option.selected = true;
- that._trigger( "selected", event, {
+ that._trigger( "select", event, {
item: ui.item.option
});
},