From c3c2b9bfa8100a7098e5314f1f3059fabc49a809 Mon Sep 17 00:00:00 2001 From: Piotr Jasiun Date: Thu, 23 Jan 2014 11:54:01 +0100 Subject: [PATCH 1/2] Apply #10308 hack only to IE10. --- plugins/tabletools/plugin.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/plugins/tabletools/plugin.js b/plugins/tabletools/plugin.js index efe325a89ae..ee5afc6fceb 100644 --- a/plugins/tabletools/plugin.js +++ b/plugins/tabletools/plugin.js @@ -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(); } From 526f214f4a76dbf3d88009e0e8ee644bcf4fc7f3 Mon Sep 17 00:00:00 2001 From: Piotr Jasiun Date: Tue, 4 Feb 2014 10:51:22 +0100 Subject: [PATCH 2/2] Changelog entry. --- CHANGES.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGES.md b/CHANGES.md index 523f8da1d5e..d844e85e2fd 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -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