X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/6746dc89c47ed01b165cc1152533605f97eb8e8d..HEAD:/docs/source/Element.fx-more.html diff --git a/docs/source/Element.fx-more.html b/docs/source/Element.fx-more.html index 53f33032..38adb267 100644 --- a/docs/source/Element.fx-more.html +++ b/docs/source/Element.fx-more.html @@ -3,8 +3,8 @@ The source code - - + + @@ -15,10 +15,10 @@ -
/**
- * @class Ext.core.Element
+  
/**
+ * @class Ext.Element
  */
-Ext.core.Element.addMethods(
+Ext.Element.addMethods(
     function() {
         var VISIBILITY      = "visibility",
             DISPLAY         = "display",
@@ -26,12 +26,12 @@ Ext.core.Element.addMethods(
             NONE            = "none",
             XMASKED         = Ext.baseCSSPrefix + "masked",
             XMASKEDRELATIVE = Ext.baseCSSPrefix + "masked-relative",
-            data            = Ext.core.Element.data;
+            data            = Ext.Element.data;
 
         return {
-            /**
+            /**
              * Checks whether the element is currently visible using both visibility and display properties.
-             * @param {Boolean} deep (optional) True to walk the dom and see if parent elements are hidden (defaults to false)
+             * @param {Boolean} [deep=false] True to walk the dom and see if parent elements are hidden
              * @return {Boolean} True if the element is currently visible, else false
              */
             isVisible : function(deep) {
@@ -51,7 +51,7 @@ Ext.core.Element.addMethods(
                 return true;
             },
 
-            /**
+            /**
              * Returns true if display is not "none"
              * @return {Boolean}
              */
@@ -59,13 +59,13 @@ Ext.core.Element.addMethods(
                 return !this.isStyle(DISPLAY, NONE);
             },
 
-            /**
+            /**
              * Convenience method for setVisibilityMode(Element.DISPLAY)
              * @param {String} display (optional) What to set display to when visible
-             * @return {Ext.core.Element} this
+             * @return {Ext.Element} this
              */
             enableDisplayMode : function(display) {
-                this.setVisibilityMode(Ext.core.Element.DISPLAY);
+                this.setVisibilityMode(Ext.Element.DISPLAY);
 
                 if (!Ext.isEmpty(display)) {
                     data(this.dom, 'originalDisplay', display);
@@ -74,18 +74,18 @@ Ext.core.Element.addMethods(
                 return this;
             },
 
-            /**
+            /**
              * Puts a mask over this element to disable user interaction. Requires core.css.
              * This method can only be applied to elements which accept child nodes.
              * @param {String} msg (optional) A message to display in the mask
              * @param {String} msgCls (optional) A css class to apply to the msg element
-             * @return {Element} The mask element
+             * @return {Ext.Element} The mask element
              */
             mask : function(msg, msgCls) {
                 var me  = this,
                     dom = me.dom,
                     setExpression = dom.style.setExpression,
-                    dh  = Ext.core.DomHelper,
+                    dh  = Ext.DomHelper,
                     EXTELMASKMSG = Ext.baseCSSPrefix + "mask-msg",
                     el,
                     mask;
@@ -137,7 +137,7 @@ Ext.core.Element.addMethods(
                 return mask;
             },
 
-            /**
+            /**
              * Removes a previously applied mask.
              */
             unmask : function() {
@@ -162,7 +162,7 @@ Ext.core.Element.addMethods(
                     me.removeCls([XMASKED, XMASKEDRELATIVE]);
                 }
             },
-            /**
+            /**
              * Returns true if this element is masked. Also re-centers any displayed message within the mask.
              * @return {Boolean}
              */
@@ -180,10 +180,10 @@ Ext.core.Element.addMethods(
                 return false;
             },
 
-            /**
+            /**
              * Creates an iframe shim for this element to keep selects and other windowed objects from
              * showing through.
-             * @return {Ext.core.Element} The new shim element
+             * @return {Ext.Element} The new shim element
              */
             createShim : function() {
                 var el = document.createElement('iframe'),