Changeset 7043
- Timestamp:
- May 8, 2008, 7:09:59 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
OpenPNE/branches/stable-2.12.x/public_html/js/tiny_mce/plugins/openpne/editor_plugin.js
r6703 r7043 80 80 ed.onPostProcess.add(function(ed, o) { // To text mode 81 81 if (o.save) { 82 o.content = t._previewToText(o.content, ed); 82 if (ed.isHidden()) { 83 o.content = ed.getElement().value; 84 } else { 85 o.content = t._previewToText(o.content, ed); 86 } 83 87 } 84 88 });
Note: See TracChangeset
for help on using the changeset viewer.