Reputation: 69
I am facing a issue related to ckeditor. When I tried to load the ckeditor on my page it give me environment in incompatible error in console of the browsers. Please help.
Upvotes: 0
Views: 2431
Reputation: 4739
This happens when running ckeditor in an officially non-supported environment, such as an iPad or tablet or old browser. An exception can also be thrown by jquery adapter for ckeditor.
Per the documentation on unsupported environments, you can force compatibility with:
CKEDITOR.env.isCompatible = true;
Upvotes: 3