I have a problem with the CogEditor plugin:
When you press return (after automatic growth at the minimum height), the text content trembles (jumps one line and returns down), and the vertical scroll bar flickers on. Auto show works, but user experience is jerky.
I can hide the vertical scroll bar by specifying scroll = "no" and overflow = "hidden", but the text content is still shaking.
I will disable scrolling in ckeditor.js:
<iframe scrolling="no" style="width:100%;height:100%;overflow:hidden;" frameBorder="0" title="'+E+'"'+' src="'+W+'"'+' tabIndex="'+(b.webkit?-1:C.tabIndex)+'"'+' allowTransparency="true"'+'></iframe>
CKEditor initialization code:
CKEDITOR.replace('Description', { sharedSpaces: { top: 'topSpace', bottom: 'bottomSpace' }, extraPlugins: 'autogrow,tableresize', removePlugins: 'maximize,resize,elementspath', skin: 'kama', toolbar: [['Format', 'Font', 'FontSize'], ['Bold', 'Italic', 'Underline', 'Strike', 'Subscript', 'Superscript', '-', 'RemoveFormat'], ['TextColor', 'BGColor'], ['JustifyLeft', 'JustifyCenter', 'JustifyRight', 'JustifyBlock'], ['NumberedList', 'BulletedList'], ['Outdent', 'Indent'], '/', ['Link', 'Unlink', 'Anchor'], ['Image', 'Flash', 'Table', 'HorizontalRule', 'SpecialChar'], ['PasteText', 'PasteFromWord'],['Cut','Copy','Paste'], ['Undo', 'Redo'], ['Find', 'Replace'], ['SpellChecker']], toolbarCanCollapse: false, pasteFromWordRemoveFontStyles: false, enterMode: CKEDITOR.ENTER_BR, shiftEnterMode: CKEDITOR.ENTER_P, autoGrow_minHeight: 300 })
Is there a way to avoid skipping / shifting text content when I press the enter key (after auto-spill at minimum height)?