fnp
/
fnpeditor.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
wlxml: metdata wip - empty key/value is represented as an empty string
[fnpeditor.git]
/
src
/
smartxml
/
smartxml.js
diff --git
a/src/smartxml/smartxml.js
b/src/smartxml/smartxml.js
index
e525c14
..
d168e6d
100644
(file)
--- a/
src/smartxml/smartxml.js
+++ b/
src/smartxml/smartxml.js
@@
-33,14
+33,17
@@
$.extend(DocumentNode.prototype, {
},
clone: function() {
},
clone: function() {
- var clone = this._$.clone(true, true);
+ var clone = this._$.clone(true, true),
+ node = this;
clone.find('*').addBack().each(function() {
clone.find('*').addBack().each(function() {
- var clonedData = $(this).data();
+ var el = this,
+ clonedData = $(this).data();
+
_.pairs(clonedData).forEach(function(pair) {
var key = pair[0],
value = pair[1];
if(_.isFunction(value.clone)) {
_.pairs(clonedData).forEach(function(pair) {
var key = pair[0],
value = pair[1];
if(_.isFunction(value.clone)) {
- clonedData[key] = value.clone();
+ clonedData[key] = value.clone(
node.document.createDocumentNode(el)
);
}
});
});
}
});
});