Upgrade to ExtJS 4.0.0 - Released 04/26/2011
[extjs.git] / src / layout / component / Draw.js
1 /**
2  * @class Ext.layout.component.Draw
3  * @extends Ext.layout.component.Component
4  * @private
5  *
6  */
7
8 Ext.define('Ext.layout.component.Draw', {
9
10     /* Begin Definitions */
11
12     alias: 'layout.draw',
13
14     extend: 'Ext.layout.component.Auto',
15
16     /* End Definitions */
17
18     type: 'draw',
19
20     onLayout : function(width, height) {
21         this.owner.surface.setSize(width, height);
22         this.callParent(arguments);
23     }
24 });