mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-28 23:59:57 +09:00
simulz님의 rss reader 추가
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@3074 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
699d8a7fed
commit
a4075d9a86
50 changed files with 535 additions and 0 deletions
17
widgets/rss_reader/skins/sz_select/js/tab.js
Normal file
17
widgets/rss_reader/skins/sz_select/js/tab.js
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
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"
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue