[fusion-commits] r1857 - trunk/lib/OpenLayers
svn_fusion at osgeo.org
svn_fusion at osgeo.org
Wed May 20 14:29:08 EDT 2009
Author: pagameba
Date: 2009-05-20 14:29:07 -0400 (Wed, 20 May 2009)
New Revision: 1857
Modified:
trunk/lib/OpenLayers/OpenLayers.js
Log:
re #256, need another small fix for IE 8 to size the vector space properly by not using setAttribute for coordsize.
Modified: trunk/lib/OpenLayers/OpenLayers.js
===================================================================
--- trunk/lib/OpenLayers/OpenLayers.js 2009-05-20 18:15:53 UTC (rev 1856)
+++ trunk/lib/OpenLayers/OpenLayers.js 2009-05-20 18:29:07 UTC (rev 1857)
@@ -11848,8 +11848,8 @@
root = roots[i];
var size = this.size.w + " " + this.size.h;
- root.setAttribute("coordsize", size);
-
+ //root.setAttribute("coordsize", size);
+ root.coordsize = size;
}
// flip the VML display Y axis upside down so it
// matches the display Y axis of the map
More information about the fusion-commits
mailing list