Skip to content

Commit fb00b8a

Browse files
committed
Merge branch 't/12850'
2 parents 3ca0e59 + 7ba8682 commit fb00b8a

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

CHANGES.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ Fixed Issues:
1515
* [#10032](http://dev.ckeditor.com/ticket/10032): Fixed: [Paste from Word](http://ckeditor.com/addon/pastefromword) filter is executed for every paste after using the button.
1616
* [#12597](http://dev.ckeditor.com/ticket/12597): [Blink/Webkit] Fixed: Multi-byte Japanese chars entry not working properly after *Shift+Enter*.
1717
* [#12387](http://dev.ckeditor.com/ticket/12387): Fixed: An error is thrown if a skin does not have the [`chameleon`](http://docs.ckeditor.com/#!/api/CKEDITOR.skin-method-chameleon) property defined and [`config.uiColor`](http://docs.ckeditor.com/#!/api/CKEDITOR.config-cfg-uiColor) was defined.
18+
* [#12850](http://dev.ckeditor.com/ticket/12850): [IEQM] Fixed: Error is thrown after focusing the editor.
1819

1920
## CKEditor 4.4.6
2021

core/editable.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -495,8 +495,8 @@
495495
fixInitialSelection: function() {
496496
var that = this;
497497

498-
// Deal with IE8- (the old MS selection) first.
499-
if ( CKEDITOR.env.ie && CKEDITOR.env.version < 9 ) {
498+
// Deal with IE8- IEQM (the old MS selection) first.
499+
if ( CKEDITOR.env.ie && ( CKEDITOR.env.version < 9 || CKEDITOR.env.quirks ) ) {
500500
if ( this.hasFocus ) {
501501
this.focus();
502502
fixMSSelection();

0 commit comments

Comments
 (0)