fnp
/
fnpeditor.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
editor: refactoring - move dialog view implementation out of data module
[fnpeditor.git]
/
src
/
smartxml
/
core.js
diff --git
a/src/smartxml/core.js
b/src/smartxml/core.js
index
665f9d5
..
a2d39a6
100644
(file)
--- a/
src/smartxml/core.js
+++ b/
src/smartxml/core.js
@@
-13,7
+13,7
@@
var INSERTION = function(implementation) {
nodeParent,
returned;
options = options || {};
nodeParent,
returned;
options = options || {};
- if(!(this.document.containsNode(this))) {
+ if(!(this.document.containsNode(this))
|| !insertion.isNew
) {
nodeParent = insertion.ofNode.parent();
}
returned = implementation.call(this, insertion.ofNode);
nodeParent = insertion.ofNode.parent();
}
returned = implementation.call(this, insertion.ofNode);
@@
-32,6
+32,10
@@
var documentNodeTransformations = {
this._$.detach();
if(existed) {
this.triggerChangeEvent('nodeDetached', {parent: parent});
this._$.detach();
if(existed) {
this.triggerChangeEvent('nodeDetached', {parent: parent});
+ if(!parent) {
+ // This was the root of the document
+ this.document._defineDocumentProperties(null);
+ }
}
return this;
},
}
return this;
},
@@
-41,9
+45,12
@@
var documentNodeTransformations = {
if(this.isRoot()) {
return this.document.replaceRoot(node);
}
if(this.isRoot()) {
return this.document.replaceRoot(node);
}
- toret = this.after(node);
- this.detach();
- return toret;
+ if(this.parent()) {
+ toret = this.after(node);
+ this.detach();
+ return toret;
+ }
+ throw new Error('Cannot replace node without a parent.');
},
after: INSERTION(function(node) {
},
after: INSERTION(function(node) {
@@
-70,8
+77,9
@@
var documentNodeTransformations = {
wrapWith: function(node) {
var insertion = this.getNodeInsertion(node);
wrapWith: function(node) {
var insertion = this.getNodeInsertion(node);
- if(this.parent()) {
- this.before(insertion.ofNode);
+
+ if(this.parent() || this.isRoot()) {
+ this.replaceWith(insertion.ofNode);
}
insertion.ofNode.append(this);
return insertion.ofNode;
}
insertion.ofNode.append(this);
return insertion.ofNode;