mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
29 lines
553 B
JavaScript
29 lines
553 B
JavaScript
|
/*
|
||
|
* tabs_defaults.js
|
||
|
*/
|
||
|
|
||
|
var tabs_defaults = {
|
||
|
add: null,
|
||
|
ajaxOptions: null,
|
||
|
beforeload: null,
|
||
|
cache: false,
|
||
|
collapsible: false,
|
||
|
cookie: null,
|
||
|
disable: null,
|
||
|
disabled: false,
|
||
|
enable: null,
|
||
|
event: "click",
|
||
|
fx: null,
|
||
|
idPrefix: "ui-tabs-",
|
||
|
load: null,
|
||
|
panelTemplate: "<div></div>",
|
||
|
remove: null,
|
||
|
select: null,
|
||
|
show: null,
|
||
|
spinner: "<em>Loading…</em>",
|
||
|
tabTemplate: "<li><a href='#{href}'><span>#{label}</span></a></li>"
|
||
|
};
|
||
|
|
||
|
// FAIL: falsy values break the cookie option
|
||
|
commonWidgetTests( "tabs", { defaults: tabs_defaults } );
|