ckeditor.js
サイトにCKEDITOR 4.2 (Chrome 29 および Firefox 23 でテスト) を追加しようとしていhead
ます。
CKEDITOR.replace('editor');
しかし、その後、テキストフィールドに書き込むことができず、どのボタンをクリックしてもエラーが表示されますCannot call method 'getSelection' of undefined
CKEDITOR.dom.selection = function (a) {
var b = a instanceof CKEDITOR.dom.element;
this.document = a instanceof CKEDITOR.dom.document ? a : a.getDocument();
this.root = a = b ? a : this.document.getBody();
this.isLocked = 0;
this._ = {
cache: {}
};
b = o ? this.document.$.selection : this.document.getWindow().$.getSelection(); // Error
// ...
}
空のページで ajax なしで動作していますが、サイトでは動作していません。他のスクリプトと競合している可能性がありますか?
何か案が ?