Upgrade to ExtJS 4.0.0 - Released 04/26/2011
[extjs.git] / src / fx / target / CompositeElementCSS.js
1 /**
2  * @class Ext.fx.target.CompositeElementCSS
3  * @extends Ext.fx.target.CompositeElement
4  * 
5  * This class represents a animation target for a {@link Ext.CompositeElement}, where the
6  * constituent elements support CSS based animation. It allows each {@link Ext.core.Element} in 
7  * the group to be animated as a whole. In general this class will not be created directly, 
8  * the {@link Ext.CompositeElement} will be passed to the animation and the appropriate target 
9  * will be created.
10  */
11 Ext.define('Ext.fx.target.CompositeElementCSS', {
12
13     /* Begin Definitions */
14
15     extend: 'Ext.fx.target.CompositeElement',
16
17     requires: ['Ext.fx.target.ElementCSS'],
18
19     /* End Definitions */
20     setAttr: function() {
21         return Ext.fx.target.ElementCSS.prototype.setAttr.apply(this, arguments);
22     }
23 });