我如何使用 CKEDITOR 4.0 的调整大小事件。
我需要在编辑器调整大小时设置一些属性。在 CKEDITOR 4.0 API 事件中存在。但我不知道如何使用它。
谁能告诉我怎么用。。
我如何使用 CKEDITOR 4.0 的调整大小事件。
我需要在编辑器调整大小时设置一些属性。在 CKEDITOR 4.0 API 事件中存在。但我不知道如何使用它。
谁能告诉我怎么用。。
Using the instanceCreated
event didn't work for me, but instanceReady
did:
CKEDITOR.on('instanceReady',function(ev) {
ev.editor.on('resize',function(reEvent){
//your code here
});
});
解决方案:
//After the editor instance created add the resize event
CKEDITOR.on('instanceCreated', function(ev) {
ev.editor.on('resize',function(reEvent){
alert( 'The editor resized' );
});
});