Changeset 6716
- Timestamp:
- 07/05/12 12:03:21 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.4/expressoMail1_2/js/rich_text_editor.js
r6715 r6716 253 253 cRichTextEditor.prototype.setData = function (id,data){ 254 254 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); 259 259 } 260 260 cRichTextEditor.prototype.setInitData = function (id,data,reply,recursion, callback){
Note: See TracChangeset
for help on using the changeset viewer.