nsedit/tests/unit/selectable/common.js
Mark Schouten d32092c1f0 Squashed 'jquery-ui/' content from commit 3dd8a09
git-subtree-dir: jquery-ui
git-subtree-split: 3dd8a09b441d65445f2b6a7c73e72af65445d5da
2016-08-05 12:47:57 +02:00

29 lines
467 B
JavaScript

define( [
"lib/common",
"ui/widgets/selectable"
], function( common ) {
common.testWidget( "selectable", {
defaults: {
appendTo: "body",
autoRefresh: true,
cancel: "input, textarea, button, select, option",
classes: {},
delay: 0,
disabled: false,
distance: 0,
filter: "*",
tolerance: "touch",
// Callbacks
create: null,
selected: null,
selecting: null,
start: null,
stop: null,
unselected: null,
unselecting: null
}
} );
} );