4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5 <title>The source code</title>
6 <link href="../resources/prettify/prettify.css" type="text/css" rel="stylesheet" />
7 <script type="text/javascript" src="../resources/prettify/prettify.js"></script>
8 <style type="text/css">
9 .highlight { display: block; background-color: #ddd; }
11 <script type="text/javascript">
12 function highlight() {
13 document.getElementById(location.hash.replace(/#/, "")).className = "highlight";
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
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.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
28 Ext.define('Ext.fx.target.CompositeElementCSS', {
30 /* Begin Definitions */
32 extend: 'Ext.fx.target.CompositeElement',
34 requires: ['Ext.fx.target.ElementCSS'],
38 return Ext.fx.target.ElementCSS.prototype.setAttr.apply(this, arguments);