Changeset 6732 for branches


Ignore:
Timestamp:
07/06/12 08:48:43 (12 years ago)
Author:
eduardow
Message:

Ticket #2940 - Lentidão ao fechar uma aba no Internet Explorer.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.4/expressoMail1_2/js/draw_api.js

    r6715 r6732  
    891891        var _mouse_out; 
    892892        var _cell; 
     893        var colGroupMain = document.getElementById("colgroup_main_"+numBox);  
     894        var colGroupHead = document.getElementById("colgroup_head_"+numBox); 
    893895        for (var r=0;r<trM.length;r++) { 
    894896                for (var c=0;c<trM[r].cells.length;c++) { 
     
    897899                        if (is_mozilla && !is_webkit) { 
    898900                                if (!emptyBody) { 
    899                                         document.getElementById("colgroup_main_"+numBox).childNodes[c].setAttribute("width",colSizes[tbl][c]); 
     901                                        colGroupMain.childNodes[c].setAttribute("width",colSizes[tbl][c]);  
    900902                                } 
    901                                 document.getElementById("colgroup_head_"+numBox).childNodes[c].setAttribute("width",colSizes[tbl][c]); 
     903                                colGroupHead.childNodes[c].setAttribute("width",colSizes[tbl][c]);  
    902904                                if (tbH.rows[0].cells[c].className=="th_resizable") { 
    903905                                        // lots of stupid fixes for FF to redraw cell content 
     
    914916                                } 
    915917                        } 
     918                        /* 
    916919                        else { 
    917920                                tbH.rows[0].cells[c].setAttribute("width",_cell.offsetWidth); 
    918                         } 
     921                        }*/ 
    919922                } 
    920923        } 
Note: See TracChangeset for help on using the changeset viewer.