Open
Description
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!