X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/7a654f8d43fdb43d78b63d90528bed6e86b608cc..3789b528d8dd8aad4558e38e22d775bcab1cbd36:/docs/source/Proxy.html diff --git a/docs/source/Proxy.html b/docs/source/Proxy.html index db12f1d0..41047594 100644 --- a/docs/source/Proxy.html +++ b/docs/source/Proxy.html @@ -1,4 +1,21 @@ -Sencha Documentation Project
/**
+
+
+
+  
+  The source code
+  
+  
+  
+  
+
+
+  
/**
  * @class Ext.panel.Proxy
  * @extends Object
  * A custom drag proxy implementation specific to {@link Ext.panel.Panel}s. This class
@@ -13,7 +30,7 @@ Ext.define('Ext.panel.Proxy', {
     alternateClassName: 'Ext.dd.PanelProxy',
     
     constructor: function(panel, config){
-        /**
+        /**
          * @property panel
          * @type Ext.panel.Panel
          */
@@ -22,7 +39,7 @@ Ext.define('Ext.panel.Proxy', {
         Ext.apply(this, config);
     },
 
-    /**
+    /**
      * @cfg {Boolean} insertProxy True to insert a placeholder proxy element
      * while dragging the panel, false to drag with no proxy (defaults to true).
      * Most Panels are not absolute positioned and therefore we need to reserve
@@ -37,7 +54,7 @@ Ext.define('Ext.panel.Proxy', {
     stop: Ext.emptyFn,
     sync: Ext.emptyFn,
 
-    /**
+    /**
      * Gets the proxy's element
      * @return {Element} The proxy's element
      */
@@ -45,7 +62,7 @@ Ext.define('Ext.panel.Proxy', {
         return this.ghost.el;
     },
 
-    /**
+    /**
      * Gets the proxy's ghost Panel
      * @return {Panel} The proxy's ghost Panel
      */
@@ -53,7 +70,7 @@ Ext.define('Ext.panel.Proxy', {
         return this.ghost;
     },
 
-    /**
+    /**
      * Gets the proxy element. This is the element that represents where the
      * Panel was before we started the drag operation.
      * @return {Element} The proxy's element
@@ -62,7 +79,7 @@ Ext.define('Ext.panel.Proxy', {
         return this.proxy;
     },
 
-    /**
+    /**
      * Hides the proxy
      */
     hide : function(){
@@ -78,7 +95,7 @@ Ext.define('Ext.panel.Proxy', {
         }
     },
 
-    /**
+    /**
      * Shows the proxy
      */
     show: function(){
@@ -103,7 +120,7 @@ Ext.define('Ext.panel.Proxy', {
         }
     },
 
-    /**
+    /**
      * Moves the proxy to a different position in the DOM.  This is typically
      * called while dragging the Panel to keep the proxy sync'd to the Panel's
      * location.
@@ -117,4 +134,6 @@ Ext.define('Ext.panel.Proxy', {
             parentNode.insertBefore(this.proxy.dom, before);
         }
     }
-});
\ No newline at end of file +});
+ +