aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/selectable
diff options
context:
space:
mode:
authorMike Sherov <mike.sherov@gmail.com>2013-01-02 18:27:22 -0500
committerMike Sherov <mike.sherov@gmail.com>2013-01-02 18:27:22 -0500
commitf667d090a74ce3f9c0bacceab93ec542c6915e44 (patch)
tree2334132b1fa1485e72ac5aa73d46ef78c5ff4f56 /tests/unit/selectable
parentcf7dc089e00b781e4fb237da3b3e856cf996c7ed (diff)
downloadjquery-ui-f667d090a74ce3f9c0bacceab93ec542c6915e44.tar.gz
jquery-ui-f667d090a74ce3f9c0bacceab93ec542c6915e44.zip
Interactions: Update widget defaults to match documented API.
Diffstat (limited to 'tests/unit/selectable')
-rw-r--r--tests/unit/selectable/selectable_common.js12
1 files changed, 10 insertions, 2 deletions
diff --git a/tests/unit/selectable/selectable_common.js b/tests/unit/selectable/selectable_common.js
index 00bbedc61..d00a47be5 100644
--- a/tests/unit/selectable/selectable_common.js
+++ b/tests/unit/selectable/selectable_common.js
@@ -3,11 +3,19 @@ TestHelpers.commonWidgetTests("selectable", {
appendTo: "body",
autoRefresh: true,
cancel: "input,textarea,button,select,option",
- create: null,
delay: 0,
disabled: false,
distance: 0,
filter: "*",
- tolerance: "touch"
+ tolerance: "touch",
+
+ // callbacks
+ create: null,
+ selected: null,
+ selecting: null,
+ start: null,
+ stop: null,
+ unselected: null,
+ unselecting: null
}
});