Text is not word-wrapped in paste popup in firefox and IE
- Use firefox and IE, go to http://ckeditor.com/demo#bbcode demo.
- Right-click on text area and select Paste
- Popup will show
- Type some text long enough to take more than 1 line
Actual results
All text is typed in one line and scrollbars show. Word-wrap is not enabled. Please refer to the attachment
Expected results
No scrollbar shows and text is word-wrapped. The issue can't be reproduced on chrome.
Change History (7)
| Status: |
new →
confirmed
|
| Version: |
4.5.0 →
3.0
|
| Owner: |
set to Szymon Kupś
|
| Status: |
confirmed →
assigned
|
| Status: |
assigned →
review
|
| Resolution: |
→ fixed
|
| Status: |
review →
closed
|
| Milestone: |
→ CKEditor 4.5.2
|
Chrome adds "break-word" by itself. I guess this is not a problem to add this style to body element in ckeditor-dev\plugins\clipboard\dialogs\paste.js
Code:
var htmlToLoad = '<html dir="' + editor.config.contentsLangDirection + '"' + ' lang="' + ( editor.config.contentsLanguage || editor.langCode ) + '">' + '<head><style>body{margin:3px;height:95%}</style></head><body>' + '<script id="cke_actscrpt" type="text/javascript">' +This ticket could be fixed with #13405.