jquery-ui
Version:
A curated set of user interface interactions, effects, widgets, and themes built on top of the jQuery JavaScript Library.
23 lines (19 loc) • 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
}
} );
} );