게시글의 카테고리를 다중 depth를 지원하게 하고 게시판 모듈에서 이 다중 depth를 적용하도록 기본 스킨 수정. 게시글 분류 위젯 추가

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@3549 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2008-01-21 08:11:13 +00:00
parent e539a5e8a2
commit 3a12a24a1f
38 changed files with 475 additions and 112 deletions

View file

@ -168,9 +168,10 @@ function move_url(url, open_wnidow) {
**/
function toggleDisplay(obj, opt) {
obj = xGetElementById(obj);
if(!obj) return;
if(typeof(opt)=="undefined") opt = "inline";
if(obj.style.display == "none") obj.style.display = opt;
else obj.style.display = "none";
if(!obj.style.display || obj.style.display == "block") obj.style.display = 'none';
else obj.style.display = opt;
}
/**