2015-04-06 14:13:15 +00:00
|
|
|
define( [
|
|
|
|
"lib/common",
|
2015-07-15 01:57:20 +00:00
|
|
|
"ui/widgets/button"
|
2015-04-06 14:13:15 +00:00
|
|
|
], function( common ) {
|
|
|
|
|
|
|
|
common.testWidget( "button", {
|
2011-04-25 18:04:30 +00:00
|
|
|
defaults: {
|
2014-01-22 17:02:32 +00:00
|
|
|
classes: {
|
|
|
|
"ui-button": "ui-corner-all"
|
2011-04-25 18:04:30 +00:00
|
|
|
},
|
2014-01-22 17:02:32 +00:00
|
|
|
disabled: null,
|
|
|
|
icon: null,
|
|
|
|
iconPosition: "beginning",
|
2011-04-25 18:04:30 +00:00
|
|
|
label: null,
|
2014-01-22 17:02:32 +00:00
|
|
|
showLabel: true,
|
2010-01-20 14:00:14 +00:00
|
|
|
|
2015-08-21 04:12:35 +00:00
|
|
|
// Callbacks
|
2011-04-25 18:04:30 +00:00
|
|
|
create: null
|
2010-01-20 14:00:14 +00:00
|
|
|
}
|
2015-08-21 04:12:35 +00:00
|
|
|
} );
|
2015-04-06 14:13:15 +00:00
|
|
|
|
|
|
|
} );
|