jquery-ui/tests/unit/selectable/common.js
Alexander Schmitz 824e05c337 Selectable: Style updates
Ref #14246
Ref gh-1588
2015-08-21 08:06:23 -04:00

30 lines
466 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
}
});
} );