[Mapbender-commits] r5861 - in trunk/mapbender/http: javascripts
plugins
svn_mapbender at osgeo.org
svn_mapbender at osgeo.org
Wed Mar 31 06:05:33 EDT 2010
Author: verenadiewald
Date: 2010-03-31 06:05:17 -0400 (Wed, 31 Mar 2010)
New Revision: 5861
Modified:
trunk/mapbender/http/javascripts/mod_ResultList.js
trunk/mapbender/http/plugins/mb_resultList_DetailPopup.js
Log:
don't set dialog height, because IE can't handle that correctly and height is set automatically
Modified: trunk/mapbender/http/javascripts/mod_ResultList.js
===================================================================
--- trunk/mapbender/http/javascripts/mod_ResultList.js 2010-03-31 07:57:48 UTC (rev 5860)
+++ trunk/mapbender/http/javascripts/mod_ResultList.js 2010-03-31 10:05:17 UTC (rev 5861)
@@ -218,7 +218,12 @@
};
if(display_popup){
- $('#'+options.id).dialog({autoOpen: false , width:options.resultListWidth, height:options.resultListHeight, draggable: true, title: options.resultListTitle, position: options.position});
+ $('#'+options.id).dialog({autoOpen: false ,
+ width:options.resultListWidth,
+// height:options.resultListHeight,
+ draggable: true,
+ title: options.resultListTitle,
+ position: options.position});
}
else{
$('#'+options.id).css("display","none");
Modified: trunk/mapbender/http/plugins/mb_resultList_DetailPopup.js
===================================================================
--- trunk/mapbender/http/plugins/mb_resultList_DetailPopup.js 2010-03-31 07:57:48 UTC (rev 5860)
+++ trunk/mapbender/http/plugins/mb_resultList_DetailPopup.js 2010-03-31 10:05:17 UTC (rev 5861)
@@ -93,7 +93,7 @@
autoOpen : false,
draggable : true,
width : options.detailPopupWidth,
- height : options.detailPopupHeight,
+// height : options.detailPopupHeight,
position : options.position
});
infoPopup.dialog("open");
More information about the Mapbender_commits
mailing list