Ignore:
Timestamp:
07/19/11 17:44:12 (13 years ago)
Author:
airton
Message:

Ticket #2147 - Permitir ao usuario reportar problemas em mensagens de email

Location:
trunk/expressoMail1_2/js
Files:
1 added
2 edited

Legend:

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

    r4826 r4830  
    18931893                        div_other_options.innerHTML += ' | <span class="message_options" onclick="spam(\''+info_msg.msg_folder+'\', '+info_msg.msg_number+',\'null\')";>'+get_lang("Mark as Spam")+'</span>'; 
    18941894        } 
     1895         
     1896        var report_error        = ' | <span onmouseover="this.className=\'message_options_active\'" onmouseout="this.className=\'message_options\'" class="message_options" onclick=reports_window("'+currentTab+'");>'+get_lang("Report error")+'</span> |';  
     1897                          
     1898        div_other_options.innerHTML += report_error; 
     1899         
    18951900        td_other_options.align = 'right'; 
    18961901        td_other_options.style.paddingTop = '3px'; 
  • trunk/expressoMail1_2/js/main.js

    r4825 r4830  
    27592759                return arrayInvalidEmails; 
    27602760} 
     2761 
     2762                /* Função que chama a tela para o usuário reportar um erro no email. */  
     2763                function reports_window(currentTab){  
     2764                        ID_msg = currentTab.substr(0,currentTab.indexOf("_"));  
     2765                        report_wind.make_report_window(ID_msg);  
     2766                }  
     2767 
Note: See TracChangeset for help on using the changeset viewer.