Changeset 6717 for trunk


Ignore:
Timestamp:
07/05/12 14:20:53 (12 years ago)
Author:
angelo
Message:

Ticket #2940 - Lentidao ao fechar uma aba no Internet Explorer

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/expressoMail1_2/js/draw_api.js

    r6698 r6717  
    896896        var _mouse_out; 
    897897        var _cell; 
     898        var colGroupMain = document.getElementById("colgroup_main_"+numBox); 
     899        var colGroupHead = document.getElementById("colgroup_head_"+numBox); 
    898900        for (var r=0;r<trM.length;r++) { 
    899901                for (var c=0;c<trM[r].cells.length;c++) { 
     
    902904                        if (is_mozilla && !is_webkit) { 
    903905                                if (!emptyBody) { 
    904                                         document.getElementById("colgroup_main_"+numBox).childNodes[c].setAttribute("width",colSizes[tbl][c]); 
     906                                        colGroupMain.childNodes[c].setAttribute("width",colSizes[tbl][c]); 
    905907                                } 
    906                                 document.getElementById("colgroup_head_"+numBox).childNodes[c].setAttribute("width",colSizes[tbl][c]); 
     908                                colGroupHead.childNodes[c].setAttribute("width",colSizes[tbl][c]); 
    907909                                if (tbH.rows[0].cells[c].className=="th_resizable") { 
    908910                                        // lots of stupid fixes for FF to redraw cell content 
     
    919921                                } 
    920922                        } 
     923                        /* 
    921924                        else { 
    922925                                tbH.rows[0].cells[c].setAttribute("width",_cell.offsetWidth); 
    923                         } 
     926                        }*/ 
    924927                } 
    925928        } 
Note: See TracChangeset for help on using the changeset viewer.