mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
491bb9c7f4
Ref #7053 Ref gh-1411
29 lines
519 B
JavaScript
29 lines
519 B
JavaScript
TestHelpers.commonWidgetTests( "slider", {
|
|
defaults: {
|
|
animate: false,
|
|
cancel: "input,textarea,button,select,option",
|
|
classes: {
|
|
"ui-slider": "ui-corner-all",
|
|
"ui-slider-handle": "ui-corner-all",
|
|
"ui-slider-range": "ui-corner-all ui-widget-header"
|
|
},
|
|
delay: 0,
|
|
disabled: false,
|
|
distance: 0,
|
|
max: 100,
|
|
min: 0,
|
|
orientation: "horizontal",
|
|
range: false,
|
|
step: 1,
|
|
value: 0,
|
|
values: null,
|
|
|
|
// callbacks
|
|
create: null,
|
|
change: null,
|
|
slide: null,
|
|
start: null,
|
|
stop: null
|
|
}
|
|
});
|