Changes between Initial Version and Version 1 of Ticket #16825, comment 4
- Timestamp:
- Feb 1, 2017, 4:21:50 PM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #16825, comment 4
initial v1 34 34 Error is caused in doBlur function contained in blur method of focusManager. See: https://github.com/ckeditor/ckeditor-dev/blob/2db0ce3e25f9c97404e2be107e1250a78254ddd7/core/focusmanager.js#L161-L163. 35 35 36 Once the editor destroyed, editor.editable() is null. Hence, editor.editable().isInline() can only fail. 36 When the editor is destroyed, `editor.editable()` is set to `null`. See https://github.com/ckeditor/ckeditor-dev/blob/2db0ce3e25f9c97404e2be107e1250a78254ddd7/core/editor.js#L807. 37 38 Hence, `editor.editable().isInline()` can only fail. 37 39 38 40 The `CKEDITOR.env.chrome` test explains why this only occurs on blink browsers.