Upgrade to ExtJS 3.1.1 - Released 02/08/2010
[extjs.git] / docs / source / EventManager-more.html
index 84f6ce6..0ed6e0a 100644 (file)
@@ -31,14 +31,14 @@ Ext.apply(Ext.EventManager, function(){
            var h = D.getViewHeight(),
                w = D.getViewWidth();
 
-           //whacky problem in IE where the resize event will fire even though the w/h are the same.
-           if(curHeight != h || curWidth != w){
+            //whacky problem in IE where the resize event will fire even though the w/h are the same.
+            if(curHeight != h || curWidth != w){
                resizeEvent.fire(curWidth = w, curHeight = h);
-           }
+            }
        },
 
        <div id="method-Ext.EventManager-onWindowResize"></div>/**
-        * Adds a listener to be notified when the browser window is resized and provides resize event buffering (50 milliseconds),
+        * Adds a listener to be notified when the browser window is resized and provides resize event buffering (100 milliseconds),
         * passes new viewport width and height to handlers.
         * @param {Function} fn      The handler function the window resize event invokes.
         * @param {Object}   scope   The scope (<code>this</code> reference) in which the handler function executes. Defaults to the browser window.
@@ -56,11 +56,7 @@ Ext.apply(Ext.EventManager, function(){
        // exposed only to allow manual firing
        fireWindowResize : function(){
            if(resizeEvent){
-               if((Ext.isIE||Ext.isAir) && resizeTask){
-                   resizeTask.delay(50);
-               }else{
-                   resizeEvent.fire(D.getViewWidth(), D.getViewHeight());
-               }
+               resizeTask.delay(100);
            }
        },