jquery-ui/tests/unit/tabs/common.js
Alexander Schmitz 063885f592 Tabs: Style updates
Ref #14246
Ref gh-1588
2015-08-21 08:06:22 -04:00

32 lines
513 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
}
});
} );