mirror of
https://github.com/jquery/jquery-ui.git
synced 2025-01-07 20:34:24 +00:00
Selectmenu: alphabetical ordering of options and callback events
This commit is contained in:
parent
8a62210538
commit
b014bc6245
11
ui/jquery.ui.selectmenu.js
vendored
11
ui/jquery.ui.selectmenu.js
vendored
@ -20,19 +20,20 @@ $.widget( "ui.selectmenu", {
|
|||||||
version: "@VERSION",
|
version: "@VERSION",
|
||||||
defaultElement: "<select>",
|
defaultElement: "<select>",
|
||||||
options: {
|
options: {
|
||||||
dropdown: true,
|
|
||||||
appendTo: "body",
|
appendTo: "body",
|
||||||
|
dropdown: true,
|
||||||
position: {
|
position: {
|
||||||
my: "left top",
|
my: "left top",
|
||||||
at: "left bottom",
|
at: "left bottom",
|
||||||
collision: "none"
|
collision: "none"
|
||||||
},
|
},
|
||||||
|
|
||||||
// callbacks
|
// callbacks
|
||||||
open: null,
|
change: null,
|
||||||
focus: null,
|
|
||||||
select: null,
|
|
||||||
close: null,
|
close: null,
|
||||||
change: null
|
focus: null,
|
||||||
|
open: null,
|
||||||
|
select: null
|
||||||
},
|
},
|
||||||
|
|
||||||
_create: function() {
|
_create: function() {
|
||||||
|
Loading…
Reference in New Issue
Block a user