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.
25 lines
395 B
25 lines
395 B
5 years ago
|
define( [
|
||
|
"lib/common",
|
||
|
"ui/widgets/progressbar"
|
||
|
], function( common ) {
|
||
|
|
||
|
common.testWidget( "progressbar", {
|
||
|
defaults: {
|
||
|
classes: {
|
||
|
"ui-progressbar": "ui-corner-all",
|
||
|
"ui-progressbar-value": "ui-corner-left",
|
||
|
"ui-progressbar-complete": "ui-corner-right"
|
||
|
},
|
||
|
disabled: false,
|
||
|
max: 100,
|
||
|
value: 0,
|
||
|
|
||
|
//Callbacks
|
||
|
change: null,
|
||
|
complete: null,
|
||
|
create: null
|
||
|
}
|
||
|
} );
|
||
|
|
||
|
} );
|