detach: function() {
this.dom().detach();
this.canvas = null;
+ return this;
},
markAsCurrent: function() {
} else {
element = DocumentElement.create(params);
}
- var target = action === 'append' ? e._container() : e.dom();
+ var target = (action === 'append' || action === 'prepend') ? e._container() : e.dom();
target[action](element.dom());
return element;
};
this.data('orig-end', undefined);
return manipulate(this, params, 'append');
},
+ prepend: function(params) {
+ return manipulate(this, params, 'prepend');
+ },
before: function(params) {
return manipulate(this, params, 'before');
idx = grandParent.childIndex(parent),
prev = idx - 1 > -1 ? grandParentChildren[idx-1] : null,
next = idx + 1 < grandParentChildren.length ? grandParentChildren[idx+1] : null;
+
+ prev = (prev instanceof DocumentTextElement) ? prev : null;
+ next = (next instanceof DocumentTextElement) ? next : null;
+
if(prev && next) {
prev.setText(prev.getText() + this.getText() + next.getText());
next.detach();