X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/7a654f8d43fdb43d78b63d90528bed6e86b608cc..6746dc89c47ed01b165cc1152533605f97eb8e8d:/docs/source/Shadow.html diff --git a/docs/source/Shadow.html b/docs/source/Shadow.html index 2d4b173a..54a726d2 100644 --- a/docs/source/Shadow.html +++ b/docs/source/Shadow.html @@ -1,15 +1,33 @@ -Sencha Documentation Project
/**
- * @class Ext.Shadow
+
+
+
+  
+  The source code
+  
+  
+  
+  
+
+
+  
/**
+ * @class Ext.Shadow
  * Simple class that can provide a shadow effect for any element.  Note that the element MUST be absolutely positioned,
  * and the shadow does not provide any shimming.  This should be used only in simple cases -- for more advanced
  * functionality that can also provide the same shadow effect, see the {@link Ext.Layer} class.
- * @constructor
- * Create a new Shadow
- * @param {Object} config The config object
  */
 Ext.define('Ext.Shadow', {
     requires: ['Ext.ShadowPool'],
 
+    /**
+     * Creates new Shadow.
+     * @param {Object} config (optional) Config object.
+     */
     constructor: function(config) {
         Ext.apply(this, config);
         if (typeof this.mode != "string") {
@@ -199,4 +217,6 @@ Ext.define('Ext.Shadow', {
             this.el.setStyle("z-index", z);
         }
     }
-});
\ No newline at end of file +});
+ +