[mapguide-commits] r5450 - trunk/MgDev/Web/src/viewerfiles

svn_mapguide at osgeo.org svn_mapguide at osgeo.org
Wed Dec 8 20:19:32 EST 2010


Author: hubu
Date: 2010-12-08 17:19:32 -0800 (Wed, 08 Dec 2010)
New Revision: 5450

Modified:
   trunk/MgDev/Web/src/viewerfiles/ajaxmappane.templ
Log:
Fix ticket: https://trac.osgeo.org/mapguide/ticket/1558


Modified: trunk/MgDev/Web/src/viewerfiles/ajaxmappane.templ
===================================================================
--- trunk/MgDev/Web/src/viewerfiles/ajaxmappane.templ	2010-12-08 10:15:59 UTC (rev 5449)
+++ trunk/MgDev/Web/src/viewerfiles/ajaxmappane.templ	2010-12-09 01:19:32 UTC (rev 5450)
@@ -4203,6 +4203,9 @@
 {
     var tb = document.getElementById("PropertyPaneToolbar");
     tb.style.display = visible ? "block" : "none";
+    //in IE9, the display is not set as expected
+    //set again, as a workaround
+    tb.style.display = visible ? "block" : "none";
 }
 
 function OnResizeToolbar(e)



More information about the mapguide-commits mailing list