I am using ng2-ckeditor in my Angular2 project. It is working fine but when I go on another component, It shows warning message [CKEDITOR] Error code: editor-destroy-iframe.
I google for solution and found below solution:
for (name in CKEDITOR.instances) {
CKEDITOR.instances[name].destroy(true);
}
But from where to get CKEDITOR. In ng2-ckeditor package, I can see only 2 library CKEditorModule, CKEditorComponent.
Please help me to solve this.