16 lines
306 B
JavaScript
16 lines
306 B
JavaScript
/**
|
|
* @private
|
|
*/
|
|
Ext.define('Ext.util.paintmonitor.OverflowChange', {
|
|
|
|
extend: 'Ext.util.paintmonitor.Abstract',
|
|
|
|
eventName: 'overflowchanged',
|
|
|
|
monitorClass: 'overflowchange',
|
|
|
|
onElementPainted: function(e) {
|
|
this.getCallback().apply(this.getScope(), this.getArgs());
|
|
}
|
|
});
|