vue-ckeditor2
vue-ckeditor2 copied to clipboard
Calling setData twice produces IE11 console errors
Describe the bug creating the RTE on IE11 throws a console bug: SCRIPT70 permission denied.
To Reproduce dynamically create an RTE on IE11
Additional context I found the reason why this happens: The second call to "setData" in the create() method is the reason why.
Question: Why is setData called twice?
this.instance.setData(this.value); this.instance.on('instanceReady', () => { this.instance.setData(this.value); });
Thanks!
Thank you @vitality82
I will investigate and fix soon.