jquery-ui
Version:
A curated set of user interface interactions, effects, widgets, and themes built on top of the jQuery JavaScript Library.
28 lines (24 loc) • 372 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",
icons: {
primary: null,
secondary: null
},
label: null,
showLabel: true,
text: true,
// Callbacks
create: null
}
} );
} );