Changeset 5449
- Timestamp:
- 01/30/12 16:35:19 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/expressoMail1_2/js/main.js
r5440 r5449 3065 3065 height:140, 3066 3066 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 ] 3076 3086 }); 3077 3087
Note: See TracChangeset
for help on using the changeset viewer.