[fusion-commits] r1694 - trunk/widgets
svn_fusion at osgeo.org
svn_fusion at osgeo.org
Thu Nov 27 16:25:35 EST 2008
Author: madair
Date: 2008-11-27 16:25:35 -0500 (Thu, 27 Nov 2008)
New Revision: 1694
Modified:
trunk/widgets/Measure.js
Log:
closes #184: set marker display to none in marker.destroy for Safari
Modified: trunk/widgets/Measure.js
===================================================================
--- trunk/widgets/Measure.js 2008-11-27 21:17:45 UTC (rev 1693)
+++ trunk/widgets/Measure.js 2008-11-27 21:25:35 UTC (rev 1694)
@@ -533,6 +533,7 @@
destroy: function() {
if (this.domObj.parentNode) {
this.domObj.parentNode.removeChild(this.domObj);
+ this.domObj.style.display = 'none'; //Also hide it because Safari leaves the domObj on the page
}
},
More information about the fusion-commits
mailing list