Selectmenu: alphabetical ordering of options and callback events

This commit is contained in:
Felix Nagel 2012-11-29 19:43:36 +01:00
parent 8a62210538
commit b014bc6245

View File

@ -20,19 +20,20 @@ $.widget( "ui.selectmenu", {
version: "@VERSION",
defaultElement: "<select>",
options: {
dropdown: true,
appendTo: "body",
dropdown: true,
position: {
my: "left top",
at: "left bottom",
collision: "none"
},
// callbacks
open: null,
focus: null,
select: null,
change: null,
close: null,
change: null
focus: null,
open: null,
select: null
},
_create: function() {