Changeset 8125
- Timestamp:
- 04/26/13 19:33:09 (10 years ago)
- Location:
- branches/2.5/expressoMail1_2/js
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.5/expressoMail1_2/js/abas.js
r8124 r8125 241 241 td.onclick = function(){alternate_border(ID);resizeWindow()}; 242 242 td.setAttribute("noWrap","true"); 243 td.alt = ' ';244 td.title = borderTitle;243 td.setAttribute("role",get_current_folder()); 244 td.title = borderTitle; 245 245 borderTitle = borderTitle ? borderTitle : id_value ? get_lang("No Subject") : " " ; 246 246 td.value = borderTitle; -
branches/2.5/expressoMail1_2/js/draw_api.js
r8124 r8125 5773 5773 } 5774 5774 5775 function verifyContext(type) { 5776 if(type == "unarchive"){ 5777 expresso_mail_archive.unarchieve($(".menu-sel").attr("role"), null, null); 5778 } else { 5779 archive_msgs($(".menu-sel").attr("role"),null,null) 5780 } 5781 } 5782 5775 5783 function draw_footer_box(num_msgs){ 5776 5784 folder = get_current_folder(); … … 5798 5806 ((expresso_offline)?" ":'<span class="message_options_import"><span ' + change_font_color + ' title="'+get_lang("Import")+'" class="message_options" onclick="import_window()">'+get_lang("Import")+'</span></span>'); 5799 5807 5808 5800 5809 //Link arquivar e desarquivar com ação 5801 5810 //MAILARCHIVER … … 5803 5812 if(expresso_mail_archive.enabled){ 5804 5813 if(proxy_mensagens.is_local_folder(current_folder))//Unarchive link 5805 span_options.innerHTML += ' <span title="'+get_lang("Unarchive")+'" class="message_options" onclick=" expresso_mail_archive.unarchieve(\''+folder+'\', null, null);">'+get_lang("Unarchive")+'</span>';5814 span_options.innerHTML += ' <span title="'+get_lang("Unarchive")+'" class="message_options" onclick="verifyContext(\'unarchive\')">'+get_lang("Unarchive")+'</span>'; 5806 5815 else//Archive link 5807 span_options.innerHTML += ' <span title="'+get_lang("Archive")+'" class="message_options" onclick=" archive_msgs(\''+folder+'\',null,null)">'+get_lang("Archive")+'</span>';5816 span_options.innerHTML += ' <span title="'+get_lang("Archive")+'" class="message_options" onclick="verifyContext(\'archive\')">'+get_lang("Archive")+'</span>'; 5808 5817 } 5809 5818 }
Note: See TracChangeset
for help on using the changeset viewer.