}
element.data('other-attrs', params.others);
- if(params.rawChildren) {
+ if(params.rawChildren && params.rawChildren.length) {
container.append(params.rawChildren);
+ } else if(params.prepopulateOnEmpty) {
+ element.append(DocumentTextElement.create({text: ''}));
}
return dom;
},
prev.setText(prev.getText() + this.getText() + next.getText());
next.detach();
} else if (prev || next) {
- var target = prev ? prev : next;
- target.setText(target.getText() + this.getText());
+ var target = prev ? prev : next,
+ newText = prev ? target.getText() + this.getText() : this.getText() + target.getText();
+ target.setText(newText);
} else {
parent.after(this);
}