jquery-ui/tests/unit/tabs/common.js
Alexander Schmitz 6c0bb24918 Tabs: Style updates
Ref #14246
2015-09-11 08:29:07 -04:00

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
}
} );
} );