Changeset 646


Ignore:
Timestamp:
01/30/09 10:29:50 (15 years ago)
Author:
niltonneto
Message:

Resolve #375
Modificação de imagem user_card.gif para user_card.png

Location:
trunk/expressoMail1_2/js
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/expressoMail1_2/js/draw_api.js

    r620 r646  
    55        'countFile' : [0,0,0,0,0,0,0,0,0,0], // Stores the number of files attached in current tab 
    66        'imapBox' : [], // Stores the folder name 
    7         'toPreserve' : [] // Check if the message should be removed from draft after send 
     7        'toPreserve' : [], // Check if the message should be removed from draft after send 
     8        'autosave_timer' : [] // The timeout timer for autosave function 
    89}; 
    910var tabTypes = { 
     
    12981299                        var td = document.createElement("TD");                   
    12991300                        if(info_msg.attachments.length != 1) { 
    1300                                 var link_attachment     = document.createElement("A"); 
    1301                                 link_attachment.setAttribute("href", "javascript:download_all_attachments('"+info_msg.msg_folder+"','"+info_msg.msg_number+"')"); 
    1302                                 link_attachment.innerHTML = " "+info_msg.attachments.length+' '+get_lang('files')+' :: '+get_lang('Download all atachments'); 
    1303                                 link_attachment.innerHTML += '<BR>'; 
    1304                                 td.appendChild(link_attachment); 
     1301                        var link_attachment     = document.createElement("A"); 
     1302                        link_attachment.setAttribute("href", "javascript:download_all_attachments('"+info_msg.msg_folder+"','"+info_msg.msg_number+"')"); 
     1303                        link_attachment.innerHTML = " "+info_msg.attachments.length+' '+get_lang('files')+' :: '+get_lang('Download all atachments'); 
     1304                        link_attachment.innerHTML += '<BR>'; 
     1305                        td.appendChild(link_attachment); 
    13051306                        } 
    13061307                        var del_attachments = document.createElement("A"); 
     
    13381339                        } 
    13391340                        else { 
    1340                                 link_attachment.innerHTML += '<BR>'; 
    1341                                 attachments.appendChild(link_attachment); 
     1341                        link_attachment.innerHTML += '<BR>'; 
     1342                        attachments.appendChild(link_attachment); 
    13421343                        } 
    13431344                } 
     
    13801381        info_msg.body = info_msg.body.replace("<body","<span"); 
    13811382        info_msg.body = info_msg.body.replace("<BODY","<span"); 
    1382  
    13831383        div.innerHTML+= "<span id='body_"+ID+"'>"+info_msg.body+"</span><br><br>"; 
    13841384        //////////////////////////////////////////////////////////////////////////////////////////////////////   
     
    22932293         
    22942294        var sm_envelope_img1 = '<img style="cursor:'+ (is_ie ? 'hand' : 'pointer') +'" title="' + get_lang("Add Contact") + 
    2295         '" onclick="ccQuickAddOne.showList(\''+cc_data+'\')" src="./templates/default/images/user_card.gif">'; 
     2295        '" onclick="ccQuickAddOne.showList(\''+cc_data+'\')" src="./templates/default/images/user_card.png">'; 
    22962296        var to_addybook_add = "<SPAN id='insert_plugin_"+idx_cc+"_"+ID+"'>"; 
    22972297        to_addybook_add += addrs; 
  • trunk/expressoMail1_2/js/rich_text_editor.js

    r607 r646  
    375375 
    376376cRichTextEditor.prototype.createImage = function(){ 
     377        if (preferences.auto_save_draft == 1){ 
     378                        autosave_time = 200000; 
     379                        clearTimeout(openTab.autosave_timer[currentTab]); 
     380                } 
    377381        var form = document.getElementById("attachment_window"); 
    378382        if (form == null){ 
Note: See TracChangeset for help on using the changeset viewer.