X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/7a654f8d43fdb43d78b63d90528bed6e86b608cc..f562e4c6e5fac7bcb445985b99acbea4d706e6f0:/docs/source/Target.html diff --git a/docs/source/Target.html b/docs/source/Target.html index 75540cc0..01afe742 100644 --- a/docs/source/Target.html +++ b/docs/source/Target.html @@ -1,5 +1,22 @@ -Sencha Documentation Project
/**
- * @class Ext.fx.target.Target
+
+
+
+  
+  The source code
+  
+  
+  
+  
+
+
+  
/**
+ * @class Ext.fx.target.Target
 
 This class specifies a generic target for an animation. It provides a wrapper around a
 series of different types of objects to allow for a generic animation API.
@@ -9,20 +26,22 @@ underlying animation will create the appropriate Ext.fx.target.Target object by
 the instance to be animated.
 
 The following types of objects can be animated:
-- {@link #Ext.fx.target.Component Components}
-- {@link #Ext.fx.target.Element Elements}
-- {@link #Ext.fx.target.Sprite Sprites}
+
+- {@link Ext.fx.target.Component Components}
+- {@link Ext.fx.target.Element Elements}
+- {@link Ext.fx.target.Sprite Sprites}
 
  * @markdown
  * @abstract
- * @constructor
- * @param {Mixed} target The object to be animated
  */
-
 Ext.define('Ext.fx.target.Target', {
 
     isAnimTarget: true,
 
+    /**
+     * Creates new Target.
+     * @param {Ext.Component/Ext.Element/Ext.draw.Sprite} target The object to be animated
+     */
     constructor: function(target) {
         this.target = target;
         this.id = this.getId();
@@ -32,4 +51,6 @@ Ext.define('Ext.fx.target.Target', {
         return this.target.id;
     }
 });
-
\ No newline at end of file +
+ +