Ticket #6308 (closed Bug: fixed)
"vertical" resize_dir still sets width CSS
| Reported by: | LloydSkoyd | Owned by: | garry.yao |
|---|---|---|---|
| Priority: | Normal | Milestone: | CKEditor 3.6.3 |
| Component: | UI : Toolbar | Version: | 3.4 |
| Keywords: | Cc: | mcianc@… |
Description (last modified by krst) (diff)
When resize_dir is configured to be "vertical", only vertical size changes should be allowed. However, after some vertical resizing, a width CSS style (in px) is set on the editor span. For example:
style="width:1019px"
This is a problem if the editor is supposed to be 100% wide. The editor is now stuck at being the same width, even when the window/container resizes.
The same issue probably applies to "horizontal" resize_dir, but with a height CSS style.
Both issues can be fixed by changing the editor resize function call in resize/plugin.js line43 to:
editor.resize( resizeHorizontal ? width : null, resizeVertical ? height : null );
This will cause the width/height to only be changed when necessary.
Attachments
Change History
comment:1 Changed 3 years ago by krst
- Status changed from new to confirmed
- Keywords HasPatch added; resize removed
- Description modified (diff)
comment:7 Changed 14 months ago by garry.yao
- Owner set to garry.yao
- Status changed from confirmed to review
- Component changed from General to UI : Toolbar
- Keywords HasPatch removed
We dont need to fix the horizontal-only resize since percentage val is not supported for editor height.

Confirmed. After applying provided change, editor resizes itself depending on window size