Changeset 5449


Ignore:
Timestamp:
01/30/12 16:35:19 (12 years ago)
Author:
alexandrecorreia
Message:

Ticket #673 - Novas dialogs com Jquery ( padronizando - Sim/Não? ).

File:
1 edited

Legend:

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

    r5440 r5449  
    30653065                height:140, 
    30663066                modal: true, 
    3067                 buttons: { 
    3068                                 "Ok": function() { 
    3069                                         cExecute ("$this.imap_functions.empty_folder&clean_folder="+"imapDefaultTrashFolder", handler_empty_trash); 
    3070                                         $( this ).dialog( "close" ); 
    3071                                 }, 
    3072                                 "Cancelar": function() { 
    3073                                         $( this ).dialog( "close" ); 
    3074                                 } 
    3075                 } 
     3067                buttons: [ 
     3068                                        { 
     3069                                                text: get_lang("Yes"), 
     3070                                                click: function() 
     3071                                                { 
     3072                                                 cExecute ("$this.imap_functions.empty_folder&clean_folder="+"imapDefaultTrashFolder", handler_empty_trash); 
     3073                                                 $( this ).dialog( "close" ); 
     3074                                                }, 
     3075                                                style: "margin-top: -2.1em"  
     3076                                        }, 
     3077                                        { 
     3078                                                text: get_lang("No"), 
     3079                                                click: function() 
     3080                                                { 
     3081                                                        $( this ).dialog( "close" );                                                     
     3082                                                }, 
     3083                                                style: "margin-top: -2.1em"  
     3084                                        }, 
     3085                                ] 
    30763086        }); 
    30773087         
Note: See TracChangeset for help on using the changeset viewer.