Sha256: e22926368be5b84d0ba7df41c98a7fe948cfa468dd43636b7136eab24b7e7269
Contents?: true
Size: 696 Bytes
Versions: 10
Compression:
Stored size: 696 Bytes
Contents
/** * Provides a handle for 9-point resizing of Elements or Components. */ Ext.define('Ext.resizer.Handle', { extend: 'Ext.Component', handleCls: '', baseHandleCls: Ext.baseCSSPrefix + 'resizable-handle', // Ext.resizer.Resizer.prototype.possiblePositions define the regions // which will be passed in as a region configuration. region: '', beforeRender: function() { var me = this; me.callParent(); me.addCls( me.baseHandleCls, me.baseHandleCls + '-' + me.region, me.handleCls ); }, onRender: function() { this.callParent(arguments); this.el.unselectable(); } });
Version data entries
10 entries across 10 versions & 2 rubygems