mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
02033262ee
Move to using element stats rather then js class states remove ui-button-text spans. Removed button set
23 lines
305 B
JavaScript
23 lines
305 B
JavaScript
define( [
|
|
"lib/common",
|
|
"ui/widgets/button"
|
|
], function( common ) {
|
|
|
|
common.testWidget( "button", {
|
|
defaults: {
|
|
classes: {
|
|
"ui-button": "ui-corner-all"
|
|
},
|
|
disabled: null,
|
|
icon: null,
|
|
iconPosition: "beginning",
|
|
label: null,
|
|
showLabel: true,
|
|
|
|
// Callbacks
|
|
create: null
|
|
}
|
|
} );
|
|
|
|
} );
|