[Mapbender-commits] r8383 - branches/2.7/http/plugins
svn_mapbender at osgeo.org
svn_mapbender at osgeo.org
Mon Jun 18 05:08:53 PDT 2012
Author: schaef
Date: 2012-06-18 05:08:53 -0700 (Mon, 18 Jun 2012)
New Revision: 8383
Modified:
branches/2.7/http/plugins/mb_extendedSearch.js
Log:
Bugfix to make Extended Search work in IE
Modified: branches/2.7/http/plugins/mb_extendedSearch.js
===================================================================
--- branches/2.7/http/plugins/mb_extendedSearch.js 2012-06-18 12:06:44 UTC (rev 8382)
+++ branches/2.7/http/plugins/mb_extendedSearch.js 2012-06-18 12:08:53 UTC (rev 8383)
@@ -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