Changeset 5706


Ignore:
Timestamp:
03/12/12 16:32:33 (12 years ago)
Author:
angelo
Message:

Ticket #2497 - Nova estrategia para o salvamento automatico de rascunhos

Location:
trunk
Files:
2 edited

Legend:

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

    r5702 r5706  
    42244224                        if(!!data.result && data.result != "[]" ){ 
    42254225                                var newAttach = jQuery.parseJSON(data.result);                                
    4226                                 if(newAttach.rollback === false) 
     4226                                if(newAttach.rollback !== false) 
    42274227                                { 
    42284228                                    fileUploadMSG.find('.in-progress:first').parents('p').append('<input type="hidden" name="fileId[]" value="'+newAttach['mailAttachment'][0][0].id+'"/>'); 
  • trunk/library/ckeditor/plugins/expresso/plugin.js

    r5702 r5706  
    169169                        if(!!data.result && data.result != "[]"){ 
    170170                                var newAttach = jQuery.parseJSON(data.result); 
    171                                 if(newAttach.rollback === false) 
     171                                if(newAttach.rollback !== false) 
    172172                                { 
    173173                                    fileUploadMSG.find('.in-progress:first').parents('p').append('<input type="hidden" name="fileId[]" value="'+newAttach['mailAttachment'][0][0].id+'"/>'); 
Note: See TracChangeset for help on using the changeset viewer.