mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
6c0bb24918
Ref #14246
32 lines
514 B
JavaScript
32 lines
514 B
JavaScript
define( [
|
|
"lib/common",
|
|
"ui/widgets/tabs"
|
|
], function( common ) {
|
|
|
|
common.testWidget( "tabs", {
|
|
defaults: {
|
|
active: null,
|
|
classes: {
|
|
"ui-tabs": "ui-corner-all",
|
|
"ui-tabs-nav": "ui-corner-all",
|
|
"ui-tab": "ui-corner-top",
|
|
"ui-tabs-panel": "ui-corner-bottom"
|
|
},
|
|
collapsible: false,
|
|
disabled: false,
|
|
event: "click",
|
|
heightStyle: "content",
|
|
hide: null,
|
|
show: null,
|
|
|
|
// Callbacks
|
|
activate: null,
|
|
beforeActivate: null,
|
|
beforeLoad: null,
|
|
create: null,
|
|
load: null
|
|
}
|
|
} );
|
|
|
|
} );
|