Changeset 4758


Ignore:
Timestamp:
07/15/11 09:38:38 (13 years ago)
Author:
roberto.santosjunior
Message:

Ticket #1820 - Impressão de mensagens de uma pasta - adequação ao IE. r4603

File:
1 edited

Legend:

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

    r4757 r4758  
    21892189        var y = ((screen.height - 400) / 2) - 35; 
    21902190        var window_print = window.open('','ExpressoMail','width='+print_width+',height=400,resizable=yes,scrollbars=yes,left='+x+',top='+y); 
    2191         seekDot = /width="24"/gi; 
     2191        seekDot = (is_ie ? /width=24/gi : /width="24"/gi); 
    21922192        thead = thead.replace(seekDot, "style='display:none'"); 
    21932193        tbody = tbody.replace(seekDot, "style='display:none'"); 
    2194         seekDot = /width="16"/gi; 
     2194        seekDot = (is_ie ? /width=16/gi : /width="16"/gi); 
    21952195        thead = thead.replace(seekDot, "style='display:none'"); 
    21962196        tbody = tbody.replace(seekDot, "style='display:none'"); 
    2197         seekDot = /width="12"/gi; 
     2197        seekDot = (is_ie ? /width=12/gi : /width="12"/gi); 
    21982198        thead = thead.replace(seekDot, "style='display:none'"); 
    21992199        tbody = tbody.replace(seekDot, "style='display:none'"); 
Note: See TracChangeset for help on using the changeset viewer.