This problem I have is not reproducable in the demo, but I have a fix in the plugin's source. I need to figure out if I should submit a patch or figure out how to extend the plug in with a fix.
In my ckeditor's implementation we have a wierd bug in the find plugin where the replace button will scroll to the bottom of the editor when the text to replace is at the top. After clicking it again, the screen will jump back up and you the word will be replaced. It jumps back and forth like this for each word.
I have a fix, in the dialog/find.js, use:
- element.scrollIntoView();
+ element.scrollIntoView(true);
Reading ticket #7492 inspired me to try this out and I got lucky I guess. I would rather not make changes to these files though if future updates are going to overwrite them. I am afraid to write a patch because the bug can't be reproduced on the demo. I would appreciate any advice on how to get my implementation working without tracking all these tiny changes made in the ckeditor source.
Thanks!
Difference was BR mode
I was able to reproduce this in CkEditor sample 4.3 in BR mode
I am going to switch to P mode.