관리자 페이지에서 메뉴의 child를 visible/hidden시킬때 관리자 페이지 레이아웃의 높이 변경

git-svn-id: http://xe-core.googlecode.com/svn/trunk@1941 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2007-07-16 04:54:32 +00:00
parent 6afb0bb76e
commit c2fab6070f
2 changed files with 8 additions and 2 deletions

View file

@ -22,6 +22,8 @@ function fixAdminLayoutFooter(height) {
var newHeight = clientHeight - footerHeight - headerHeight + 71 + 38;
if(newHeight<bodyHeight) newHeight = bodyHeight;
if(typeof(height)=='number') newHeight += height;
if(typeof(height)=='number') {
newHeight += height;
}
xHeight('cBody', newHeight);
}