Changeset 6046


Ignore:
Timestamp:
04/26/12 15:38:33 (12 years ago)
Author:
gustavo
Message:

Ticket #2611 - recomitado problema de upload resolvido na r5856

File:
1 edited

Legend:

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

    r6045 r6046  
    36643664                add: function (e, data) { 
    36653665                         
    3666                         if(!maxAttachmentSise || data.files[0].size < maxAttachmentSise) { 
     3666                        if(!maxAttachmentSise || data.files[0].size < maxAttachmentSise || is_ie) { 
    36673667                                setTimeout(function() { 
    36683668                                        $('#attDisposition'+ID).val('attachment'); 
     
    37023702                done: function(e, data){ 
    37033703                        if(!!data.result && data.result != "[]" ){ 
     3704                                var newAttach = jQuery.parseJSON(data.result); 
     3705                                 
     3706                                //Compatibilidade com Firefox3.6         
     3707                                if(newAttach === null ) newAttach = jQuery.parseJSON(data.result.text()); 
     3708                                 
    37043709                                var newAttach = jQuery.parseJSON(data.result);                                
    37053710                                if(newAttach.rollback !== false) 
Note: See TracChangeset for help on using the changeset viewer.