mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-18 18:59:56 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/trunk@2074 201d5d3c-b55e-5fd7-737f-ddc643e51545
24 lines
771 B
JavaScript
24 lines
771 B
JavaScript
function fnStartInit() {
|
|
var obj = xGetElementById('loading');
|
|
obj.style.visibility = 'hidden';
|
|
}
|
|
xAddEventListener(window,'load',fnStartInit);
|
|
|
|
|
|
// footer를 화면 크기에 맞춰 설정
|
|
/*
|
|
xAddEventListener(window, 'load', fixLayoutFooter);
|
|
xAddEventListener(window, 'resize', fixLayoutFooter);
|
|
function fixLayoutFooter() {
|
|
var headerHeight = 145;
|
|
var bodyHeight = xHeight(xGetElementById('content_body'));
|
|
var footerHeight = 55;
|
|
var clientHeight = xClientHeight();
|
|
var newHeight = clientHeight - footerHeight - headerHeight;
|
|
if(typeof(editor_height)!='undefined') newHeight += editor_height;
|
|
|
|
if(newHeight<bodyHeight) newHeight = bodyHeight;
|
|
xHeight('content_body', newHeight);
|
|
xHeight('left_menu_table', newHeight);
|
|
}
|
|
*/
|