Hi,
First thanks for producing such a fantastic editor - and making the resulting HTML clean across browsers.
I have a use case where I need a potentially large number of inline CkEditor instances. In order to not require this I initialize an inline CkEditor instance when the user focuses or clicks on text that shold be editable. When a blur event occurs I destroy the editor.
This is all working fine - except for an annoying page flicker in Firefox (only tested on Mac and FF 32.0.3 so far). In Firefox it would seem that initializing the first editor in a page (or destroying the last) causes Firefox to decide to repaint the entire page. I've implemented a work around that intializes a hidden editor instance, so the repaint only occurs as the page is doing its initial load/render. Keeping a hidden CkEditor instance "running" does seem to resolve the repaint for subsequent instance create/destroys actions.
I believe you can see similar behavior on your demo page - using Firefix you see what appears to be multiple paints on load, which you don't see in Safari or Chrome.
Any thoughts on what might be causing this?
Thanks,
Tony.