Ignore:
Timestamp:
12/13/07 13:26:04 (16 years ago)
Author:
niltonneto
Message:

Correções de bug. Vide ocorrências no Trac para a versão 1.2201

File:
1 edited

Legend:

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

    r128 r135  
    194194                        if (msg_to_delete){ 
    195195                                if ( (msg_to_delete.style.backgroundColor != '') && (preferences.use_shortcuts == '1') ) 
    196                                         select_msg('null', 'down'); 
     196                                { 
     197                                        if (!select_msg('null', 'down')) 
     198                                                select_msg('null', 'up') 
     199                                } 
    197200                                mail_msg.removeChild(msg_to_delete); 
    198201                        } 
     
    735738        var y = ((screen.height - 400) / 2) - 35; 
    736739        var window_print = window.open('','ExpressoMail','width='+print_width+',height=400,resizable=yes,scrollbars=yes,left='+x+',top='+y); 
    737                  
     740        if(window_print == null) { 
     741                alert(get_lang("The Anti Pop-Up is enabled. Allow this site (%1) for print.",document.location.hostname)); 
     742                return; 
     743        } 
     744         
    738745        while (1){ 
    739746                try{ 
Note: See TracChangeset for help on using the changeset viewer.