Opened 9 years ago
Closed 9 years ago
#17037 closed Bug (invalid)
White Space is removed in Chrome
| Reported by: | vedprakash | Owned by: | |
|---|---|---|---|
| Priority: | Normal | Milestone: | |
| Component: | General | Version: | |
| Keywords: | Cc: |
Description
Steps to reproduce
- Write any text in editor in chrome with space e.g. Hello
- Copy paste the same in Editor eg. Hello Hello Hello
- After saving it removes the space eg. HelloHelloHello
Expected result
Hello Hello Hello
Actual result
HelloHelloHello
Other details (browser, OS, CKEditor version, installed plugins)
Browser: Chrome (Version 58.0.3029.110 (64-bit))
Change History (1)
comment:1 Changed 9 years ago by
| Resolution: | → invalid |
|---|---|
| Status: | new → closed |
| Version: | 4.7.0 (GitHub - major) |

I'm sorry but CKEditor is JavaScript application. It has nothing to do with saving data. From what I have checked executing
CKEDITOR.instances.editor1.getData();(which is what is happening when you submit data), editor returns<p>Hello Hello Hello </p>.Spaces are not removed by the editor. You need to look for code on your server-side which removes blanks spaces or
.