Changeset 3280 for branches/2.2


Ignore:
Timestamp:
09/22/10 16:56:19 (14 years ago)
Author:
rafaelraymundo
Message:

Ticket #846 - Não exibe figuras no corpo da mensagem para impressão

File:
1 edited

Legend:

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

    r3265 r3280  
    20942094        var attachments = Element('attachments_'+border_ID); 
    20952095        var body                = Element('body_'+border_ID); 
     2096 
     2097        if (!is_ie) {//altera o link da imagem para renderização na tela de impressão no firefox  
     2098                var link = location.href.replace(/\/expressoMail1_2\/(.*)/, "");  
     2099                link = link.replace(/\/expressoMail1_2\/(.*)/, "");  
     2100                body.innerHTML = body.innerHTML.replace(/\.(\/inc\/show_embedded_attach\.php)/, link + "/expressoMail1_2$1");  
     2101                body.innerHTML = body.innerHTML.replace(/(tmpLclAtt\/)/, link + "/expressoMail1_2/$1");  
     2102        } 
     2103 
    20962104 
    20972105        var print_width = screen.width - 200; 
Note: See TracChangeset for help on using the changeset viewer.