jquery-ui/tests/unit/slider/common.js
Alexander Schmitz e583a512d7 Slider: Style updates
Ref #14246
2015-09-11 08:29:08 -04:00

36 lines
589 B
JavaScript

define( [
"lib/common",
"ui/widgets/slider"
], function( common ) {
common.testWidget( "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
}
} );
} );