aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/tooltip/common-deprecated.js
blob: d32e7656d3d52e97a3c25c525cb2e195fc5f1bc8 (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
30
31
define( [
	"lib/common",
	"ui/tooltip"
], function( common ) {

common.testWidget( "tooltip", {
	defaults: {
		classes: {
			"ui-tooltip": "ui-corner-all ui-widget-shadow"
		},
		content: function() {},
		disabled: false,
		hide: true,
		items: "[title]:not([disabled])",
		position: {
			my: "left top+15",
			at: "left bottom",
			collision: "flipfit flip"
		},
		show: true,
		tooltipClass: null,
		track: false,

		// callbacks
		close: null,
		create: null,
		open: null
	}
});

} );