corrade-http-templates – Blame information for rev 62

Subversion Repositories:
Rev:
Rev Author Line No. Line
62 office 1 define( [
2 "lib/common",
3 "ui/widgets/button"
4 ], function( common ) {
5  
6 common.testWidget( "button", {
7 defaults: {
8 classes: {
9 "ui-button": "ui-corner-all"
10 },
11 disabled: null,
12 icon: null,
13 iconPosition: "beginning",
14 label: null,
15 showLabel: true,
16  
17 // Callbacks
18 create: null
19 }
20 } );
21  
22 } );