jquery-ui/tests/unit/button/button_common.js

23 lines
266 B
JavaScript
Raw Normal View History

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