From 6ea2d320e4ffbedeef218390fdaa280ee4a49c07 Mon Sep 17 00:00:00 2001 From: "j.swiderski" Date: Mon, 3 Feb 2014 09:05:11 +0100 Subject: [PATCH 1/2] Changing parameter in append method now inserts cell in correct place. --- plugins/tabletools/plugin.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/tabletools/plugin.js b/plugins/tabletools/plugin.js index ee5afc6fceb..6da5b7726b1 100644 --- a/plugins/tabletools/plugin.js +++ b/plugins/tabletools/plugin.js @@ -607,7 +607,7 @@ // The destination row is empty, append at will. if ( !candidateCell ) - newCellTr.append( newCell, true ); + newCellTr.append( newCell ); } else { newCellRowSpan = newRowSpan = 1; From a12fb906564e6f2349724834b6e2dea50f67f433 Mon Sep 17 00:00:00 2001 From: "j.swiderski" Date: Fri, 7 Feb 2014 20:27:03 +0100 Subject: [PATCH 2/2] Added changelog entry. --- CHANGES.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGES.md b/CHANGES.md index c5b04523b89..6702d8c508c 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -5,6 +5,7 @@ CKEditor 4 Changelog Fixed Issues: +* [#11438](http://dev.ckeditor.com/ticket/11438): Splitting table cells vertically is no longer chnaging table structure. * [#8899](http://dev.ckeditor.com/ticket/8899): Fixed: Links in About Dialog now open in new window/tab. * [#11490](http://dev.ckeditor.com/ticket/11490): Fixed issue with menubuttons panel showing in source mode. * [#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.