[Mapbender-commits] r5807 - trunk/mapbender/http/plugins
svn_mapbender at osgeo.org
svn_mapbender at osgeo.org
Wed Mar 17 11:29:41 EDT 2010
Author: verenadiewald
Date: 2010-03-17 11:29:40 -0400 (Wed, 17 Mar 2010)
New Revision: 5807
Modified:
trunk/mapbender/http/plugins/mb_resultList_PrintPreview.js
Log:
use the correct syntax for opening new html page in IE
Modified: trunk/mapbender/http/plugins/mb_resultList_PrintPreview.js
===================================================================
--- trunk/mapbender/http/plugins/mb_resultList_PrintPreview.js 2010-03-17 14:18:02 UTC (rev 5806)
+++ trunk/mapbender/http/plugins/mb_resultList_PrintPreview.js 2010-03-17 15:29:40 UTC (rev 5807)
@@ -55,7 +55,8 @@
*/
doc = "<html><head>" + options.pageCss + "</head><body>"+ pageHtml +"</body></html>";
- var popup = open("","Print FeatureCollection");
+ var popup = open("","_blank");
+ popup.document.open("text/html");
popup.document.write(doc);
popup.document.close();
};
More information about the Mapbender_commits
mailing list