[fusion-commits] r1691 - trunk/lib

svn_fusion at osgeo.org svn_fusion at osgeo.org
Thu Nov 27 09:18:34 EST 2008


Author: pagameba
Date: 2008-11-27 09:18:34 -0500 (Thu, 27 Nov 2008)
New Revision: 1691

Modified:
   trunk/lib/jxlib.uncompressed.js
Log:
Closes #172.  Fix a problem with stack overflows in IE when layouts are resized by delaying propagation to children.  This fix will be incorporated in the next jxlib build (beta 5 I think).  I need to synchronize that release with updates to the mapguide templates due to the addition of support for hover states in jx buttons so I have applied the patch to the jxlib in fusion manually for now.

Modified: trunk/lib/jxlib.uncompressed.js
===================================================================
--- trunk/lib/jxlib.uncompressed.js	2008-11-26 21:46:27 UTC (rev 1690)
+++ trunk/lib/jxlib.uncompressed.js	2008-11-27 14:18:34 UTC (rev 1691)
@@ -9171,7 +9171,7 @@
             var o = {forceResize: options ? options.forceResize : false};
             $A(this.domObj.childNodes).each(function(child){
                 if (child.resize && child.getStyle('display') != 'none') {
-                    child.resize(o);                
+                    child.resize.delay(0,child,o);
                 }
             });
         }



More information about the fusion-commits mailing list