회원 모듈 사용자 부분 default스킨 컬러셋 추가

git-svn-id: http://xe-core.googlecode.com/svn/trunk@2060 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2007-07-27 10:57:21 +00:00
parent 846780b344
commit 15baa83f88
39 changed files with 220 additions and 106 deletions

View file

@ -11,19 +11,21 @@ function doDeleteShortCut(selected_module) {
procFilter(fo_obj, delete_shortcut);
}
// footer를 화면 크기에 맞춰 설정
xAddEventListener(window, 'load', fixAdminLayoutFooter);
xAddEventListener(window, 'resize', fixAdminLayoutFooter);
// footer를 화면 크기에 맞춰 설정 (폐기)
//xAddEventListener(window, 'load', fixAdminLayoutFooter);
//xAddEventListener(window, 'resize', fixAdminLayoutFooter);
function fixAdminLayoutFooter(height) {
var headerHeight = xHeight('header');
var bodyHeight = xHeight('cBody');
var footerHeight = xHeight('footer');
var clientHeight = xClientHeight();
var newHeight = clientHeight - footerHeight - headerHeight + 71 + 38;
if(newHeight<bodyHeight) newHeight = bodyHeight;
if(typeof(height)=='number') {
newHeight += height;
}
xHeight('cBody', newHeight);
return;
}
if(xIE6) {
xAddEventListener(window,'load',fixAdminNaviHeight);
}
function fixAdminNaviHeight() {
var naviHeight = xHeight('gNavigation');
var bodyHeight = xHeight('content');
if(naviHeight<bodyHeight) xHeight('gNavigation',bodyHeight);
else xHeight('content',naviHeight);
setTimeout(fixAdminNaviHeight, 500);
}