Hi,
I'm using CKEditor with "enterMode : CKEDITOR.ENTER_BR".
When typing a text and pressing enter two times, and then remove the two enters, and then insert a space where the enters have been a " " is inserted where a normal space should be inserted.
Here an example:
1. Type the text "test1234".
2. Insert two breaks between "test" and "1234":
test<enter><enter>1234
3. Remove the two <enter> so that once again "test1234" apears.
4. Enter a space between "test" and "1234".
5. When calling editor_lauftext.getData() you get "test 1234" except the expected "test 1234".
Is there a way to avoid this unexpected behaviour? It seems that the enters get somehow stored in the editing buffer, and are not removed correctly.
I've already tried various options but none could solve the problem.
I would even change the source code if necessary so a hint on where to change the code would also be appreciated.
Thanks in advance,
goo