aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/tabs/tabs_common_deprecated.js
blob: 8caff1ac5c22b3e4dc7bd266106ff0b84ce3c718 (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
26
27
28
29
TestHelpers.commonWidgetTests( "tabs", {
	defaults: {
		active: null,
		collapsible: false,
		cookie: null,
		disabled: false,
		event: "click",
		heightStyle: "content",
		hide: null,
		idPrefix: "ui-tabs-",
		panelTemplate: "<div></div>",
		// show: null, // conflicts with old show callback
		spinner: "<em>Loading&#8230;</em>",
		tabTemplate: "<li><a href='#{href}'><span>#{label}</span></a></li>",

		// callbacks
		activate: null,
		add: null,
		beforeActivate: null,
		beforeLoad: null,
		create: null,
		disable: null,
		enable: null,
		load: null,
		remove: null,
		select: null,
		show: null
	}
});