[Mapbender-commits] r8382 - trunk/mapbender/http/plugins
svn_mapbender at osgeo.org
svn_mapbender at osgeo.org
Mon Jun 18 05:06:45 PDT 2012
Author: schaef
Date: 2012-06-18 05:06:44 -0700 (Mon, 18 Jun 2012)
New Revision: 8382
Modified:
trunk/mapbender/http/plugins/mb_extendedSearch.js
Log:
Bugfix to male extended Search in IE
Modified: trunk/mapbender/http/plugins/mb_extendedSearch.js
===================================================================
--- trunk/mapbender/http/plugins/mb_extendedSearch.js 2012-06-18 08:40:29 UTC (rev 8381)
+++ trunk/mapbender/http/plugins/mb_extendedSearch.js 2012-06-18 12:06:44 UTC (rev 8382)
@@ -174,12 +174,12 @@
*
*/
function getMapExtent(obj){
- if(obj.checked == true){
+ if(obj.checked){
var mapObj = getMapObjByName("mapframe1");
document.form2.searchBbox.value = mapObj.extent;
}
else{
- document.form2.searchBbox.value = null;
+ document.form2.searchBbox.value = "";
}
}
More information about the Mapbender_commits
mailing list