Ignore:
Timestamp:
06/03/11 12:00:31 (13 years ago)
Author:
niltonneto
Message:

Ticket #1962 - Corrigido problema do envio em texto plano no Internet Explorer.

File:
1 edited

Legend:

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

    r4584 r4585  
    16791679        textArea.name = "body"; 
    16801680        body = document.getElementById("body_"+ID); 
    1681         textArea.value = ( ( mail_as_plain ) ? body.previousSibling.value : ( '<body>\r\n' + body.contentWindow.document.body.innerHTML + '\r\n</body>' ) ); 
     1681        textArea.value = ( ( mail_as_plain ) ? (is_ie ? body.contentWindow.document.body.innerHTML : body.previousSibling.value) : ( '<body>\r\n' + body.contentWindow.document.body.innerHTML + '\r\n</body>' ) ); 
    16821682        var input_folder = document.createElement("INPUT"); 
    16831683        input_folder.style.display='none'; 
Note: See TracChangeset for help on using the changeset viewer.