fnp
/
fnpeditor.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Keeping xmlns and other attributes intact
[fnpeditor.git]
/
modules
/
documentCanvas
/
canvas
/
documentElement.js
diff --git
a/modules/documentCanvas/canvas/documentElement.js
b/modules/documentCanvas/canvas/documentElement.js
index
f5a022b
..
9c2749e
100644
(file)
--- a/
modules/documentCanvas/canvas/documentElement.js
+++ b/
modules/documentCanvas/canvas/documentElement.js
@@
-122,6
+122,7
@@
$.extend(DocumentNodeElement, {
dom.attr('wlxml-meta-'+key, params.meta[key]);
});
}
dom.attr('wlxml-meta-'+key, params.meta[key]);
});
}
+ dom.data('other-attrs', params.others);
return dom;
},
return dom;
},
@@
-164,6
+165,9
@@
$.extend(DocumentNodeElement.prototype, {
meta.forEach(function(attr) {
node.attr('meta-' + attr.name, attr.value);
});
meta.forEach(function(attr) {
node.attr('meta-' + attr.name, attr.value);
});
+ _.keys(this.data('other-attrs') || {}).forEach(function(key) {
+ node.attr(key, this.data('other-attrs')[key]);
+ }, this);
if(this.data('orig-before') !== undefined) {
toret.append(document.createTextNode(this.data('orig-before')));
if(this.data('orig-before') !== undefined) {
toret.append(document.createTextNode(this.data('orig-before')));