mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-17 02:10:02 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@3074 201d5d3c-b55e-5fd7-737f-ddc643e51545
17 lines
562 B
JavaScript
17 lines
562 B
JavaScript
function tab_menu_select(tab_id, tabs, t, tab_obj){
|
|
for(var i = 1; i <= tabs; i++) {
|
|
eval("document.getElementById('tab"+tab_id+i+"')").style.display="none";
|
|
if ( t == i ) {
|
|
eval("document.getElementById('tab"+tab_id+i+"')").style.display="block";
|
|
}
|
|
}
|
|
tab_obj.className="current"
|
|
}
|
|
|
|
/* 높이 조절 */
|
|
function resize_rss_tabcontent(tab_id, ms_height) {
|
|
var obj = xGetElementById(tab_id)
|
|
|
|
if(xHeight(obj) > ms_height) obj.style.height = ms_height + 'px'
|
|
obj.style.overflow = "auto"
|
|
}
|