Ignore:
Timestamp:
2008/07/07 12:46:48 (16 years ago)
Author:
pineray
Message:

Firefoxだとファイル管理でフォルダの展開ができない不具合を修正

Location:
branches/comu-ver2/html/user_data/packages/default
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/comu-ver2/html/user_data/packages/default/css/admin_file_manager.css

    r17351 r17406  
     1#contents-filemanager-tree { 
     2    float: left; 
     3    width: 328px; 
     4    height: 430px; 
     5} 
    16#tree{ 
    27    height: 410px; 
     
    914    border-width: 1px 
    1015} 
    11 #filemanager-block-tree { 
    12     float: left; 
    13     width: 328px; 
    14     height: 430px; 
     16#contents-filemanager-nowdir { 
     17    margin: 0 0 20px 0; 
    1518} 
    16  
    1719#file_view { 
    1820    height: 380px; 
     
    2426    border-width: 1px 
    2527} 
    26 #filemanager-block-table { 
    27     margin: 0 0 20px 0; 
    28 } 
    29  
    3028#now_dir { 
    3129    height: 20px; 
  • branches/comu-ver2/html/user_data/packages/default/js/file_manager.js

    r16748 r17406  
    158158function fnTreeMenu(tName, imgName, path) { 
    159159 
    160     tMenu = document.all[tName].style; 
    161  
    162     if(tMenu.display == 'none') { 
     160    tMenu = $("#" + tName); 
     161 
     162    if(tMenu.css("display") == 'none') { 
    163163        fnChgImg(IMG_MINUS, imgName); 
    164         tMenu.display = "block"; 
     164        tMenu.show(); 
    165165        // 階層の開いた状態を保持 
    166166        arrTreeStatus.push(path); 
     
    168168    } else { 
    169169        fnChgImg(IMG_PLUS, imgName); 
    170         tMenu.display = "none"; 
     170        tMenu.hide(); 
    171171        // 閉じ状態を保持 
    172172        fnDelTreeStatus(path); 
Note: See TracChangeset for help on using the changeset viewer.