ここの情報は古いです。ご理解頂いた上でお取り扱いください。

Changeset 7043


Ignore:
Timestamp:
May 8, 2008, 7:09:59 PM (15 years ago)
Author:
ebihara
Message:

#2371:日記の文字装飾で一度プレビューモードにしたあとにテキストモードに切り替えて投稿すると文字装飾が反映されないことがあったのを修正

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  
    8080            ed.onPostProcess.add(function(ed, o) {  // To text mode
    8181                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                    }
    8387                }
    8488            });
Note: See TracChangeset for help on using the changeset viewer.