У меня странная проблема с TinyMCE. Когда я щелкаю курсор до конца, в зависимости от длины строки редактор может изменить ее размер (ширина / высота).
Этого не происходит с демонстрациями, и я не могу понять, насколько мои параметры кардинально отличаются от настроек по умолчанию.
Вот пример того же текста, но разных размеров, когда курсор находится в конце каждой строки:
![1.](https://i.stack.imgur.com/nzYvv.png)
![2.](https://i.stack.imgur.com/oDjFg.png)
Кто-нибудь еще видел такой тип поведения?
Мой код инициализации как бы:
$('textarea.tinymce').tinymce({
// Location of TinyMCE script
script_url : '/assets/modules/tiny_mce/tiny_mce_gzip.php',
// General options
mode : "textareas",
theme : "advanced",
plugins : "spellchecker",
editor_selector : "tinymce",
// Theme options
theme_advanced_buttons1 : "bold,italic,underline,strikethrough,|,formatselect,fontselect,fontsizeselect",
theme_advanced_buttons2 : "justifyleft,justifycenter,justifyright,justifyfull,|,bullist,numlist,|,outdent,indent,blockquote,|,undo,redo,|,forecolor,backcolor,spellchecker",
theme_advanced_buttons3 : "",
theme_advanced_buttons4 : "",
theme_advanced_toolbar_location : "top",
theme_advanced_toolbar_align : "left",
theme_advanced_statusbar_location : "bottom",
theme_advanced_resizing : false,
apply_source_formatting : true,
paste_auto_cleanup_on_paste : true,
paste_retain_style_properties : false,
paste_strip_class_attributes : true,
paste_remove_spans : true,
paste_remove_styles : true,
paste_remove_styles_if_webkit : true,
cleanup : true,
content_css : '/assets/modules/tiny_mce/themes/advanced/skins/default/myownstyle.css',