Changeset 3075 for branches


Ignore:
Timestamp:
07/21/10 15:42:23 (14 years ago)
Author:
amuller
Message:

Ticket #1145 - Arrumando problema no responder com histórico

Location:
branches/2.2/expressoMail1_2
Files:
3 edited

Legend:

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

    r3071 r3075  
    17971797//                      link_attachment.setAttribute("href", "javascript:download_attachments('"+info_msg.msg_folder+"','"+info_msg.msg_number+"',"+i+",'"+info_msg.attachments[i].pid+"','"+info_msg.attachments[i].encoding+"')"); 
    17981798                        link_attachment.innerHTML = url_decode(info_msg.attachments[i].name); 
    1799                         link_attachment.innerHTML = borkb(info_msg.attachments[i].fsize); 
     1799                        link_attachment.innerHTML += " ("+borkb(info_msg.attachments[i].fsize)+")"; 
    18001800                        if((url_decode(info_msg.attachments[i].name).indexOf(".ics")!=-1) || (url_decode(info_msg.attachments[i].name).indexOf(".vcard")!=-1)){ 
    18011801                                //Link para importar calendário 
     
    20132013        connector.loadScript("rich_text_editor"); 
    20142014        connector.loadScript("color_palette"); 
    2015         if(typeof(RichTextEditor) == 'undefined' || typeof(ColorPalette) == 'undefined'){ 
    2016                 setTimeout('draw_new_message(\''+border_ID+'\');',500); 
     2015        if(typeof(RichTextEditor) == 'undefined' || typeof(ColorPalette) == 'undefined') 
    20172016                return false; 
    2018         } 
    20192017 
    20202018        var ID = create_border("",border_ID); 
  • branches/2.2/expressoMail1_2/js/main.js

    r3066 r3075  
    867867        var new_border_ID = draw_new_message(parseInt(border_ID)); 
    868868        if (new_border_ID == false) 
     869        { 
     870                setTimeout('new_message(\''+type+'\',\''+border_ID+'\');',500); 
    869871                return false; 
    870                 openTab.type[new_border_ID] = tabTypes[type]; 
     872        } 
     873        openTab.type[new_border_ID] = tabTypes[type]; 
    871874 
    872875        // Salva a pasta da mensagem respondida ou encaminhada: 
Note: See TracChangeset for help on using the changeset viewer.