Opened 9 years ago
Last modified 8 years ago
#14675 confirmed Bug
On change event is not fired on first content remove after D'n'D
Reported by: | kkrzton | Owned by: | |
---|---|---|---|
Priority: | Normal | Milestone: | |
Component: | General | Version: | |
Keywords: | Cc: | sergey.s.sazonov@… |
Description
Steps to reproduce
- Go to http://ckeditor.com/demo#full.
- Open dev tools and paste
CKEDITOR.instances.editor1.on( 'change', function() { console.log( 'change', arguments ) } )
in the console. - Select part of the text.
- Drag the text and drop it inside editor.
- Select some text and press delete button to remove it.
Same happens when dropping text from outside of the editor.
Expected result
The change
event is fired after content/text is removed.
Actual result
After D'n'D the first remove operation does not trigger change
event.
Other details (browser, OS, CKEditor version, installed plugins)
CKEditor 4.5.9, tested on Chrome 51 and FF 46.
Change History (4)
comment:1 Changed 9 years ago by
Status: | new → confirmed |
---|
comment:2 Changed 9 years ago by
comment:3 Changed 9 years ago by
Cc: | sergey.s.sazonov@… added |
---|
Similar thing happens also on copy/paste as reported here:
After pasting from clipboard something goes wrong and next two input chars do not cause emitting of 'change' event. It can be reproduced on your official demo page. From the third symbol all works properly.