aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/tabs/tabs_defaults.js
blob: 397d81ce617b45d13cb6659e7ab0e4a42189d080 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/*
 * tabs_defaults.js
 */

var tabs_defaults = {
	add: null,
	beforeload: null,
	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,
	tabTemplate: "<li><a href='#{href}'><span>#{label}</span></a></li>"
};

// FAIL: falsy values break the cookie option
commonWidgetTests( "tabs", { defaults: tabs_defaults } );