Unwrapping DocumentTextElement
[fnpeditor.git] / modules / documentCanvas / canvas / documentElement.js
index f2ef09c..89e98a2 100644 (file)
@@ -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),