mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
23 lines
354 B
JavaScript
23 lines
354 B
JavaScript
define( [
|
|
"lib/common",
|
|
"ui/widgets/checkboxradio"
|
|
], function( common ) {
|
|
|
|
common.testWidget( "checkboxradio", {
|
|
noDefaultElement: true,
|
|
defaults: {
|
|
classes: {
|
|
"ui-checkboxradio-label": "ui-corner-all",
|
|
"ui-checkboxradio-icon": "ui-corner-all"
|
|
},
|
|
disabled: null,
|
|
icon: true,
|
|
label: null,
|
|
|
|
// Callbacks
|
|
create: null
|
|
}
|
|
} );
|
|
|
|
} );
|