Changeset 6925 for trunk


Ignore:
Timestamp:
08/02/12 18:12:19 (12 years ago)
Author:
angelo
Message:

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

File:
1 edited

Legend:

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

    r6910 r6925  
    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.