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.
36 lines
553 B
36 lines
553 B
5 years ago
|
define( [
|
||
|
"lib/common",
|
||
|
"ui/widgets/spinner"
|
||
|
], function( common ) {
|
||
|
|
||
|
common.testWidget( "spinner", {
|
||
|
defaults: {
|
||
|
classes: {
|
||
|
"ui-spinner": "ui-corner-all",
|
||
|
"ui-spinner-up": "ui-corner-tr",
|
||
|
"ui-spinner-down": "ui-corner-br"
|
||
|
},
|
||
|
culture: null,
|
||
|
disabled: false,
|
||
|
icons: {
|
||
|
down: "ui-icon-triangle-1-s",
|
||
|
up: "ui-icon-triangle-1-n"
|
||
|
},
|
||
|
incremental: true,
|
||
|
max: null,
|
||
|
min: null,
|
||
|
numberFormat: null,
|
||
|
page: 10,
|
||
|
step: 1,
|
||
|
|
||
|
// Callbacks
|
||
|
change: null,
|
||
|
create: null,
|
||
|
spin: null,
|
||
|
start: null,
|
||
|
stop: null
|
||
|
}
|
||
|
} );
|
||
|
|
||
|
} );
|