Changes between Initial Version and Version 1 of Ticket #13816
- Timestamp:
- Oct 12, 2015, 8:53:23 AM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #13816
- Property Owner set to Olek Nowodziński
-
Property
Status
changed from
new
toassigned
-
Ticket #13816 – Description
initial v1 29 29 30 30 1. Because FC is removed from **DOM** on various data operations: 31 1. A native `#selectionchange` is fired by `document`. It creates an infinite loop ( [#13593](https://dev.ckeditor.com/ticket/13593)) if such listener is to be used in the editor.31 1. A native `#selectionchange` is fired by `document`. It creates an infinite loop (#13593) if such listener is to be used in the editor. 32 32 1. IME (Composition) gets broken when Undo Manager snapshot is taken. This is because FC is removed from DOM and the native selection changes. Try `setInterval( function() { var i = new CKEDITOR.plugins.undo.Image( CKEDITOR.instances.editor ); console.log( i.contents ) }, 2000 );` and start composition. 33 33 34 34 == Related tickets 35 35 36 * [#12727](http://dev.ckeditor.com/ticket/12727)37 * [#13377](http://dev.ckeditor.com/ticket/13377)38 * [#13284](http://dev.ckeditor.com/ticket/13284)39 * [#13389](http://dev.ckeditor.com/ticket/13389)40 * [#13307](http://dev.ckeditor.com/ticket/13307)41 * [#13284](http://dev.ckeditor.com/ticket/13284)36 * #12727 37 * #13377 38 * #13284 39 * #13389 40 * #13307 41 * #13284 42 42 43 43 = A new approach