TinyMCE 4.0 でユーザーが選択したコンテンツを取得しようとしています。Firefox ではすべて正常に動作しますが、Chrome ではselection.getContent()
NULL が返されます。インライン TinyMCE モードを使用しています (通常モードは正常に動作します)。
var selectedContent = editor.selection.getContent();
if(!selectedContent){
alert('Please select some text first!');
return null;
}
これを修正する方法について何か提案はありますか?