ckeditor icon indicating copy to clipboard operation
ckeditor copied to clipboard

expose editor instance

Open i-just opened this issue 9 months ago • 0 comments

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

i-just avatar Mar 25 '25 08:03 i-just