Skip to content

Commit 31b7e1f

Browse files
author
Piotr Jasiun
committed
Merge branch 't/11058'
2 parents 05f125f + 526f214 commit 31b7e1f

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

CHANGES.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ Fixed Issues:
1010
* [#11417](http://dev.ckeditor.com/ticket/11417): The [`widget.doubleclick`](http://docs.ckeditor.com/#!/api/CKEDITOR.plugins.widget-event-doubleclick) event is not cancelled anymore after editing has been triggered.
1111
* [#11253](http://dev.ckeditor.com/ticket/11253): [IE] Fixed: Clipped upload button in [Enhanced Image](http://ckeditor.com/addon/image2) dialog.
1212
* [#11359](http://dev.ckeditor.com/ticket/11359): Standardized the way anchors are discovered by the [Link](http://ckeditor.com/addon/link) dialog.
13+
* [#11058](http://dev.ckeditor.com/ticket/11058): [IE8] Fixed: Error when deleting a row.
1314

1415
## CKEditor 4.3.2
1516

plugins/tabletools/plugin.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -404,7 +404,9 @@
404404

405405
// Fixing "Unspecified error" thrown in IE10 by resetting
406406
// selection the dirty and shameful way (#10308).
407-
if ( CKEDITOR.env.ie && CKEDITOR.env.version < 11 ) {
407+
// We can not apply this hack to IE8 because
408+
// it causes error (#11058).
409+
if ( CKEDITOR.env.ie && CKEDITOR.env.version == 10 ) {
408410
docOuter.focus();
409411
docInner.focus();
410412
}

0 commit comments

Comments
 (0)