Changeset 6699


Ignore:
Timestamp:
07/03/12 09:02:01 (12 years ago)
Author:
marcosw
Message:

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

File:
1 edited

Legend:

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

    r6698 r6699  
    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); 
     257    else 
     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.