ckeditor
ckeditor copied to clipboard
expose editor instance
Description
Make editor instance available in, e.g. CKEditor Config > Config options via the instance variable.
example:
return {
<somePlugin>: {
<onEvent>: info => {
instance.then((editor) => {
console.log(editor);
});
}
}
}
Related issues
n/a