Changeset 4603 for branches


Ignore:
Timestamp:
06/13/11 11:24:00 (13 years ago)
Author:
rafaelraymundo
Message:

Ticket #1999 - Impressão de mensagens de uma pasta - adequação ao IE

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.2.0.1/expressoMail1_2/js/main.js

    r4602 r4603  
    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.