Changeset 6937 for branches


Ignore:
Timestamp:
08/03/12 17:02:43 (12 years ago)
Author:
eduardow
Message:

Ticket #2990 - Problema ao realizar uma pesquisa rapida no expresso Mail.

File:
1 edited

Legend:

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

    r6931 r6937  
    960960                if (is_mozilla && !is_webkit){ 
    961961                        $('#table_message_header_box_'+numBox).attr('style','width:99.5%'); 
     962                        $('#colgroup_head_'+numBox).find('col').each(function(index,value){  
     963                     $(this).attr('width',colSizes[1][index]);  
     964            });  
     965            $('#colgroup_main_'+numBox).find('col').each(function(index,value){  
     966                     $(this).attr('width',colSizes[1][index]);  
     967            });  
    962968                }        
    963969                else if (is_webkit){ 
     
    968974                        $('#table_message_header_box_'+numBox).css('table-layout','auto'); 
    969975                } 
     976                $('#table_message_header_box_'+numBox).find('td').each(function(index,value){  
     977             $(this).width(colSizes[1][index]);  
     978        });  
     979        $('#divScrollMain_'+numBox).find('tr:first').find('td').each(function(index,value){  
     980             $(this).width(colSizes[1][index]);  
     981        });    
    970982        } 
    971983        $('#table_resultsearch_'+numBox).removeAttr('style'); 
Note: See TracChangeset for help on using the changeset viewer.