CompositeElementCSS.js 762 B

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