* revert it.

This commit is contained in:
chencongzhi520@gmail.com
2013-05-05 08:20:15 +00:00
parent 875924fee2
commit 28633fef92
+8 -5
View File
@@ -425,11 +425,14 @@ function setOuterBox()
var navbarH = $('#modulemenu').parent().parent().height();
var footerH = $('#footer').height() + 15;
var outerH = winHeight - headerH - footerH - navbarH - 37;
if ($.browser.msie && ($.browser.version == "6.0") && !$.support.style) outerH = winHeight - headerH - footerH - 98;
if ($.browser.msie && ($.browser.version == "6.0")) $('.outer').css('height', outerH);
$('.outer').css('min-height', outerH);
if(document.documentElement.clientHeight >= document.documentElement.scrollHeight)
{
var outerH = winHeight - headerH - footerH - navbarH - 37;
if ($.browser.msie && ($.browser.version == "6.0") && !$.support.style) outerH = winHeight - headerH - footerH - 98;
if ($.browser.msie && ($.browser.version == "6.0")) $('.outer').css('height', outerH);
$('.outer').css('min-height', outerH);
}
if($.browser.msie && ($.browser.version == "6.0") && !$.support.style)
{
winWidth -= 49;