jquery-ui/tests/unit/button/button_common.js
2015-04-09 09:24:45 -04:00

23 lines
266 B
JavaScript

define( [
"lib/common",
"ui/button"
], function( common ) {
common.testWidget( "button", {
defaults: {
classes: {},
disabled: null,
icons: {
primary: null,
secondary: null
},
label: null,
text: true,
// callbacks
create: null
}
});
} );