Changeset 5984


Ignore:
Timestamp:
04/20/12 16:30:23 (12 years ago)
Author:
cristiano
Message:

Ticket #2637 - Adicionada compatibilidade com Firefox3.6 na funcionalidade anexar arquivos

Location:
trunk
Files:
3 edited

Legend:

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

    r5979 r5984  
    37103710                done: function(e, data){ 
    37113711                        if(!!data.result && data.result != "[]" ){ 
    3712                                 var newAttach = jQuery.parseJSON(data.result);                                
     3712                                var newAttach = jQuery.parseJSON(data.result); 
     3713                                 
     3714                                //Compatibilidade com Firefox3.6 
     3715                                    if(newAttach === null ) newAttach = jQuery.parseJSON(data.result.text()); 
     3716                                 
    37133717                                if(newAttach.rollback !== false) 
    37143718                                { 
  • trunk/library/ckeditor/plugins/expresso/plugin.js

    r5767 r5984  
    169169                        if(!!data.result && data.result != "[]"){ 
    170170                                var newAttach = jQuery.parseJSON(data.result); 
     171                                 
     172                                //Compatibilidade com Firefox3.6 
     173                                    if(newAttach === null ) newAttach = jQuery.parseJSON(data.result.text()); 
     174                                 
    171175                                if(newAttach.rollback !== false) 
    172176                                { 
  • trunk/prototype/modules/mail/templates/new_message.ejs

    r5979 r5984  
    114114                        <tr class="attachment"> 
    115115                                <td class="field"> 
    116                                         <input style="display:none;" name="attDisposition<%= data.id %>" value="attachment"/> 
     116                                        <input style="display:none;" name="attDisposition<%= data.id %>" id="attDisposition<%= data.id%>" value="attachment"/> 
    117117                                </td> 
    118118                                <td class="value"> 
Note: See TracChangeset for help on using the changeset viewer.