Ignore:
Timestamp:
2006/11/22 17:03:23 (20 years ago)
Author:
uehara
Message:

blank

File:
1 edited

Legend:

Unmodified
Added
Removed
  • temp/trunk/html/test/uehara/js/tree.js

    r8836 r8838  
    5454} 
    5555 
    56 // Tree¾õÂÖ¤òÊÝ»ý 
     56// Tree¾õÂÖ¤òhidden¤Ë¥»¥Ã¥È 
    5757function setTreeStatus(name) { 
    5858    var tree_status = ""; 
     
    6464} 
    6565 
     66// Tree¾õÂÖ¤«¤éÊĤ¸¤ë¤òÆþ¤ì¤ë 
     67function fnDelTreeStatus(path) { 
     68    for(i=0; i < arrTreeStatus.length ;i++) { 
     69        if(arrTreeStatus[i] == path) { 
     70            arrTreeStatus[i] = ""; 
     71        } 
     72    } 
     73} 
    6674// ¥Ä¥ê¡¼ÉÁ²è 
    6775function fnDrow(id, tree) { 
     
    110118        } 
    111119        tMenu.display = "none"; 
     120        // ÊĤ¸¾õÂÖ¤òÊÝ»ý 
     121        fnDelTreeStatus(path); 
    112122    } 
    113123} 
     
    129139 
    130140// img¥¿¥°¤Î²èÁüÊѹ¹ 
    131 function fnChgImg(fileName,imgName) { 
     141function fnChgImg(fileName,imgName){ 
    132142    document.images[imgName].src = fileName; 
    133143} 
Note: See TracChangeset for help on using the changeset viewer.