Upon further testing, the extra space that the editor window is growing happens even with cursor movement within the editor.
There are no JS errors being logged in the console.
Here is a gif that shows what’s happening. All I’m doing is clicking within the editor window.
http://i.imgur.com/sEFQUju.gifv
-
This reply was modified 9 years, 6 months ago by
justinluk.
Well that looks rather annoying, have you tried inspecting the element and checking the Event Listeners, specifically the mouse over event?
I haven’t yet – great suggestion James! Maybe I can remove whatever is triggering the behavior after see what is causing it!
Let me know what you come up with, this is something I haven’t seen before and it is intriguing.
Just finished fighting with this one today. For me it was a CSS issue. I (lazily) copied across all my styles into editor-style.css in the hope that the editor would ‘preview’ the styles in some sense.
This line in editor-style.css was making my editor jolt up:
html, body {
height: 100%; }
If you haven’t specified an editor-style.css file, then I’m afraid this won’t help you…
-
This reply was modified 9 years, 6 months ago by
lexi89.
Hooooolllllyyyy @lexi89! You just saved my behind.
I looked in my editor styles and saw this:
body.wp-autoresize { margin: 10px; }
For whatever reason that margin was being added to the tinymce body every click. Setting the margin and padding to 0 fixed my issue.
Thank you and James SO MUCH for responding. You literally saved me so so so so much pain. Ah I’m so happy! :’D
Justin
Glad it worked @justinluk!