mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
1f7164660e
Ref #14246 Ref gh-1588
23 lines
275 B
JavaScript
23 lines
275 B
JavaScript
define( [
|
|
"lib/common",
|
|
"ui/widgets/button"
|
|
], function( common ) {
|
|
|
|
common.testWidget( "button", {
|
|
defaults: {
|
|
classes: {},
|
|
disabled: null,
|
|
icons: {
|
|
primary: null,
|
|
secondary: null
|
|
},
|
|
label: null,
|
|
text: true,
|
|
|
|
// Callbacks
|
|
create: null
|
|
}
|
|
} );
|
|
|
|
} );
|