Upgrade to ExtJS 4.0.7 - Released 10/19/2011
[extjs.git] / src / window / Window-legacy.js
index d82cef8..1972319 100644 (file)
@@ -1,13 +1,26 @@
-/**
- * @class Ext.Window
- * @ignore
+/*
+
+This file is part of Ext JS 4
+
+Copyright (c) 2011 Sencha Inc
+
+Contact:  http://www.sencha.com/contact
+
+GNU General Public License Usage
+This file may be used under the terms of the GNU General Public License version 3.0 as published by the Free Software Foundation and appearing in the file LICENSE included in the packaging of this file.  Please review the following information to ensure the GNU General Public License version 3.0 requirements will be met: http://www.gnu.org/copyleft/gpl.html.
+
+If you are unsure which license is appropriate for your use, please contact the sales department at http://www.sencha.com/contact.
+
+*/
+/*
+ * @class Ext.window.Window
  */
 Ext.Window.override({
-    /**
+    /*
      * Anchors this window to another element and realigns it when the window is resized or scrolled.
-     * @param {Mixed} element The element to align to.
-     * @param {String} position The position to align to (see {@link Ext.core.Element#alignTo} for more details)
-     * @param {Array} offsets (optional) Offset the positioning by [x, y]
+     * @param {String/HTMLElement/Ext.Element} element The element to align to.
+     * @param {String} position The position to align to (see {@link Ext.Element#alignTo} for more details)
+     * @param {Number[]} offsets (optional) Offset the positioning by [x, y]
      * @param {Boolean/Number} monitorScroll (optional) true to monitor body scroll and reposition. If this parameter
      * is a number, it is used as the buffer delay (defaults to 50ms).
      * @return {Ext.window.Window} this
@@ -31,7 +44,7 @@ Ext.Window.override({
         return this.doAnchor();
     },
 
-    /**
+    /*
      * Performs the anchor, using the saved anchorTarget property.
      * @return {Ext.window.Window} this
      * @private
@@ -42,7 +55,7 @@ Ext.Window.override({
         return this;
     },
 
-    /**
+    /*
      * Removes any existing anchor from this window. See {@link #anchorTo}.
      * @return {Ext.window.Window} this
      */
@@ -54,4 +67,4 @@ Ext.Window.override({
         }
         return this;
     }
-});
\ No newline at end of file
+});