Upgrade to ExtJS 4.0.7 - Released 10/19/2011
[extjs.git] / src / fx / target / CompositeElementCSS.js
1 /*
2
3 This file is part of Ext JS 4
4
5 Copyright (c) 2011 Sencha Inc
6
7 Contact:  http://www.sencha.com/contact
8
9 GNU General Public License Usage
10 This file may be used under the terms of the GNU General Public License version 3.0 as published by the Free Software Foundation and appearing in the file LICENSE included in the packaging of this file.  Please review the following information to ensure the GNU General Public License version 3.0 requirements will be met: http://www.gnu.org/copyleft/gpl.html.
11
12 If you are unsure which license is appropriate for your use, please contact the sales department at http://www.sencha.com/contact.
13
14 */
15 /**
16  * @class Ext.fx.target.CompositeElementCSS
17  * @extends Ext.fx.target.CompositeElement
18  * 
19  * This class represents a animation target for a {@link Ext.CompositeElement}, where the
20  * constituent elements support CSS based animation. It allows each {@link Ext.Element} in 
21  * the group to be animated as a whole. In general this class will not be created directly, 
22  * the {@link Ext.CompositeElement} will be passed to the animation and the appropriate target 
23  * will be created.
24  */
25 Ext.define('Ext.fx.target.CompositeElementCSS', {
26
27     /* Begin Definitions */
28
29     extend: 'Ext.fx.target.CompositeElement',
30
31     requires: ['Ext.fx.target.ElementCSS'],
32
33     /* End Definitions */
34     setAttr: function() {
35         return Ext.fx.target.ElementCSS.prototype.setAttr.apply(this, arguments);
36     }
37 });