From 369d48a45f0e40b05bd53a13d8dbe5df06a95137 Mon Sep 17 00:00:00 2001 From: Catouse Date: Tue, 10 Jun 2014 11:44:13 +0800 Subject: [PATCH] * fixed outer height for ie8. --- www/js/my.full.js | 1 + 1 file changed, 1 insertion(+) diff --git a/www/js/my.full.js b/www/js/my.full.js index 58a96fced9..df3e86d709 100644 --- a/www/js/my.full.js +++ b/www/js/my.full.js @@ -408,6 +408,7 @@ function setOuterBox() { var sideH = side.length ? (side.outerHeight() + $('#featurebar').outerHeight() + 20) : 0; var height = Math.max(sideH, $(window).height() - $('#header').height() - $('#footer').height() - 33); + if(navigator.userAgent.indexOf("MSIE 8.0") >= 0) height -= 40; $('#wrap .outer').css('min-height', height); }