diff options
author | Felix Nagel <info@felixnagel.com> | 2012-11-29 19:43:36 +0100 |
---|---|---|
committer | Felix Nagel <info@felixnagel.com> | 2012-11-29 19:49:43 +0100 |
commit | b014bc62456b0566489033dd23b1cade5c328c4e (patch) | |
tree | b2226b64072d243f4c9d70e3106614c25adf5f3d /ui/jquery.ui.selectmenu.js | |
parent | 8a62210538d6b54ea57769f6cd0cce00aad020f2 (diff) | |
download | jquery-ui-b014bc62456b0566489033dd23b1cade5c328c4e.tar.gz jquery-ui-b014bc62456b0566489033dd23b1cade5c328c4e.zip |
Selectmenu: alphabetical ordering of options and callback events
Diffstat (limited to 'ui/jquery.ui.selectmenu.js')
-rw-r--r-- | ui/jquery.ui.selectmenu.js | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/ui/jquery.ui.selectmenu.js b/ui/jquery.ui.selectmenu.js index a10b64e1e..dc66c8566 100644 --- a/ui/jquery.ui.selectmenu.js +++ b/ui/jquery.ui.selectmenu.js @@ -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() { |