Skip to content

Commit

Permalink
Merge branch 't/11058'
Browse files Browse the repository at this point in the history
  • Loading branch information
Piotr Jasiun committed Feb 4, 2014
2 parents 05f125f + 526f214 commit 31b7e1f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGES.md
Expand Up @@ -10,6 +10,7 @@ Fixed Issues:
* [#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.
* [#11253](http://dev.ckeditor.com/ticket/11253): [IE] Fixed: Clipped upload button in [Enhanced Image](http://ckeditor.com/addon/image2) dialog.
* [#11359](http://dev.ckeditor.com/ticket/11359): Standardized the way anchors are discovered by the [Link](http://ckeditor.com/addon/link) dialog.
* [#11058](http://dev.ckeditor.com/ticket/11058): [IE8] Fixed: Error when deleting a row.

## CKEditor 4.3.2

Expand Down
4 changes: 3 additions & 1 deletion plugins/tabletools/plugin.js
Expand Up @@ -404,7 +404,9 @@

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

0 comments on commit 31b7e1f

Please sign in to comment.