Upgrade to ExtJS 4.0.1 - Released 05/18/2011
[extjs.git] / docs / source / CompositeElementCSS.html
1 <!DOCTYPE html>
2 <html>
3 <head>
4   <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5   <title>The source code</title>
6   <link href="../prettify/prettify.css" type="text/css" rel="stylesheet" />
7   <script type="text/javascript" src="../prettify/prettify.js"></script>
8   <style type="text/css">
9     .highlight { display: block; background-color: #ddd; }
10   </style>
11   <script type="text/javascript">
12     function highlight() {
13       document.getElementById(location.hash.replace(/#/, "")).className = "highlight";
14     }
15   </script>
16 </head>
17 <body onload="prettyPrint(); highlight();">
18   <pre class="prettyprint lang-js"><span id='Ext-fx-target-CompositeElementCSS'>/**
19 </span> * @class Ext.fx.target.CompositeElementCSS
20  * @extends Ext.fx.target.CompositeElement
21  * 
22  * This class represents a animation target for a {@link Ext.CompositeElement}, where the
23  * constituent elements support CSS based animation. It allows each {@link Ext.core.Element} in 
24  * the group to be animated as a whole. In general this class will not be created directly, 
25  * the {@link Ext.CompositeElement} will be passed to the animation and the appropriate target 
26  * will be created.
27  */
28 Ext.define('Ext.fx.target.CompositeElementCSS', {
29
30     /* Begin Definitions */
31
32     extend: 'Ext.fx.target.CompositeElement',
33
34     requires: ['Ext.fx.target.ElementCSS'],
35
36     /* End Definitions */
37     setAttr: function() {
38         return Ext.fx.target.ElementCSS.prototype.setAttr.apply(this, arguments);
39     }
40 });</pre>
41 </body>
42 </html>