X-Git-Url: https://git.mdrn.pl/fnpeditor.git/blobdiff_plain/aa19ea0b08ad083be37ebc43aa9ba3f2bf63a043..cf8479951262da902ce027205a48ee420c63d6b8:/modules/documentCanvas/canvas/documentElement.js?ds=sidebyside diff --git a/modules/documentCanvas/canvas/documentElement.js b/modules/documentCanvas/canvas/documentElement.js index f2ef09c..89e98a2 100644 --- a/modules/documentCanvas/canvas/documentElement.js +++ b/modules/documentCanvas/canvas/documentElement.js @@ -198,6 +198,13 @@ $.extend(DocumentTextElement.prototype, { return DocumentElement.prototype.wrapWithNodeElement.call(this, wlxmlNode); } }, + unwrap: function() { + if(this.parent().children().length === 1) { + var parent = this.parent(); + parent.after(this); + parent.detach(); + } + }, split: function(params) { var parentElement = this.parent(), myIdx = parentElement.childIndex(this),