blob: b81fa7cbbe139c3691364cae1cbf65c9e831a935 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/*
* button_defaults.js
*/
var button_defaults = {
disabled: null,
text: true,
label: null,
icons: {
primary: null,
secondary: null
}
};
commonWidgetTests('button', { defaults: button_defaults });
|