You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
467 B
30 lines
467 B
5 years ago
|
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
|
||
|
}
|
||
|
} );
|
||
|
|
||
|
} );
|