Changeset 6569


Ignore:
Timestamp:
06/22/12 08:32:56 (12 years ago)
Author:
rafaelraymundo
Message:

Ticket #2886 - Incluir dados da assinatira digital na impressão da msg

File:
1 edited

Legend:

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

    r6064 r6569  
    24552455        var attachments = Element('attachments_'+border_ID); 
    24562456        var body                = Element('body_'+border_ID); 
    2457  
     2457        var show_signature = (Element("tr_signature_"+border_ID) ? "<tr><td colspan=\"5\"><hr></td><tr><tr style=\"font-size:10px\">" + Element("tr_signature_"+border_ID).innerHTML + "</tr>" : "");         
     2458        if(show_signature) 
     2459            { 
     2460                show_signature = show_signature.substring(0,show_signature.indexOf('<a ')) + '<td>';  // remove "More..."" 
     2461            } 
    24582462        if(!is_ie) 
    24592463            { 
     
    25062510                        var html ='<body>'; 
    25072511                        html += "<h4>ExpressoLivre - ExpressoMail</h4><hr>"; 
    2508                         html += '<table><tbody>'; 
     2512                        html += '<table width="100%"><tbody>'; 
    25092513                        if(sender) 
    25102514                                html += "<tr><td width=7% noWrap><font size='2'>" + get_lang('Sent by') + ": </font></td><td><font size='2'>"+sender+"</font></td></tr>"; 
     
    25302534                        html += "<tr><td width=7%><font size='2'>" + get_lang('Subject')+ ": </font></td><td><font size='2'>"+subject.innerHTML+"</font></td></tr>"; 
    25312535                        html += show_attachs; //to show the names of the attachments 
     2536                        html += show_signature; 
    25322537                        html += "</tbody></table><hr>"; 
    25332538                        window_print.document.write(html + body.innerHTML); 
Note: See TracChangeset for help on using the changeset viewer.