aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/button/common-deprecated.js
blob: 0f03bdba271d8afc3c0d04eef4969be7b639a499 (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
define( [
	"lib/common",
	"ui/widgets/button"
], function( common ) {

common.testWidget( "button", {
	defaults: {
		classes: {
			"ui-button": "ui-corner-all"
		},
		disabled: null,
		icon: null,
		iconPosition: "beginning",
		icons: {
			primary: null,
			secondary: null
		},
		label: null,
		showLabel: true,
		text: true,

		// Callbacks
		create: null
	}
} );

} );