1
2
3
4
5
6
7
8
9
10
11
12
13
| Ext.define('Neptune.view.button.widget.Small', {
| extend: 'Ext.button.Button',
| xtype: 'smallButton',
|
| text: 'Small',
|
| constructor: function(cfg) {
| if (cfg.icon) {
| this.iconCls = 'btn-add';
| }
| this.callParent(arguments);
| }
| });
|
|