Opened 12 years ago
Last modified 9 years ago
#10031 closed Bug
CKEditor injects special character in Chrome — at Version 10
Reported by: | Jared Cobb | Owned by: | |
---|---|---|---|
Priority: | Normal | Milestone: | |
Component: | General | Version: | 3.6.5 |
Keywords: | Blink | Cc: |
Description (last modified by )
Under a special circumstance I'm seeing that Chrome is injecting a special character (​) which is a zero width space character. I stumbled upon this while playing with the editor in our production app. But I created a jsfiddle that replicates the issue with instructions on how to reproduce in the jsfiddle example:
Edit:
- I just go to http://ckeditor.com/demo
- delete all contents
- then type some characters
- press Shift+Enter (or Enter in enter mode BR)
- and type some more characters.
Don't press Backspace or Delete when you type as this will remove ZWS. To check ZWS I use Chrome dev tools / elements tab. It is important to use Chrome because ZWS is only created when CKEDITOR.env.webkit is TRUE.
Change History (6)
comment:3 Changed 12 years ago by
comment:5 Changed 12 years ago by
I completely forgot to come back and follow up, I apologize. The issue is actually seen once we save the content. I'm using getData() to get the contents, and when it's saved into the database and rendered out we get the special character. In general, I'm doing this:
$('#submit').on('click', function() { var editor = CKEDITOR.instances['comment']; var content = editor.getData(); // save my stuff via an ajax call // now my data has special characters });
comment:7 Changed 11 years ago by
For me, this character is inserted (chrome) when an <img> is not contained within a <p>
comment:8 Changed 11 years ago by
Description: | modified (diff) |
---|---|
Keywords: | Blink added |
Status: | new → confirmed |
Version: | 4.0.1 → 3.6.5 |
comment:9 Changed 11 years ago by
Description: | modified (diff) |
---|
If it's a ZWS character, then most likely we're creating it. It may be Webkit specific, because of some hack targeted for Webkit only.