UNPKG

extjs-gpl

Version:

GPL licensed version of Sencha Ext JS

18 lines (13 loc) 438 B
/** * @private */ Ext.define('Ext.util.paintmonitor.CssAnimation', { extend: 'Ext.util.paintmonitor.Abstract', eventName: Ext.browser.is.WebKit ? 'webkitAnimationEnd' : 'animationend', monitorClass: 'cssanimation', onElementPainted: function(e) { if (e.animationName === Ext.baseCSSPrefix + 'paint-monitor-helper') { this.getCallback().apply(this.getScope(), this.getArgs()); } } });