diff options
author | Mike Sherov <mike.sherov@gmail.com> | 2013-01-02 18:27:22 -0500 |
---|---|---|
committer | Mike Sherov <mike.sherov@gmail.com> | 2013-01-02 18:27:22 -0500 |
commit | f667d090a74ce3f9c0bacceab93ec542c6915e44 (patch) | |
tree | 2334132b1fa1485e72ac5aa73d46ef78c5ff4f56 /ui/jquery.ui.selectable.js | |
parent | cf7dc089e00b781e4fb237da3b3e856cf996c7ed (diff) | |
download | jquery-ui-f667d090a74ce3f9c0bacceab93ec542c6915e44.tar.gz jquery-ui-f667d090a74ce3f9c0bacceab93ec542c6915e44.zip |
Interactions: Update widget defaults to match documented API.
Diffstat (limited to 'ui/jquery.ui.selectable.js')
-rw-r--r-- | ui/jquery.ui.selectable.js | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/ui/jquery.ui.selectable.js b/ui/jquery.ui.selectable.js index 8e6d03c1f..8a6db9007 100644 --- a/ui/jquery.ui.selectable.js +++ b/ui/jquery.ui.selectable.js @@ -22,7 +22,15 @@ $.widget("ui.selectable", $.ui.mouse, { autoRefresh: true, distance: 0, filter: "*", - tolerance: "touch" + tolerance: "touch", + + // callbacks + selected: null, + selecting: null, + start: null, + stop: null, + unselected: null, + unselecting: null }, _create: function() { var selectees, |