Changeset 6716


Ignore:
Timestamp:
07/05/12 12:03:21 (12 years ago)
Author:
eduardow
Message:

Ticket #2928 - Correção de bug ao remover anexo de imagem.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.4/expressoMail1_2/js/rich_text_editor.js

    r6715 r6716  
    253253cRichTextEditor.prototype.setData = function (id,data){ 
    254254     
    255      if(this.plain[id] === true) 
    256         $('#'+id).val(data); 
    257      else 
    258         CKEDITOR.instances[id].setData(data) 
     255    if(this.plain[id.replace('body_','')] === true)  
     256            $('#'+id).val(data);  
     257else  
     258    CKEDITOR.instances[id].setData(data); 
    259259} 
    260260cRichTextEditor.prototype.setInitData = function (id,data,reply,recursion, callback){ 
Note: See TracChangeset for help on using the changeset viewer.