fnp
/
fnpeditor.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Output formatting wip: keeping excessive white space at the end of text intact
[fnpeditor.git]
/
modules
/
documentCanvas
/
canvas
/
documentElement.js
diff --git
a/modules/documentCanvas/canvas/documentElement.js
b/modules/documentCanvas/canvas/documentElement.js
index
9c2749e
..
94b8422
100644
(file)
--- a/
modules/documentCanvas/canvas/documentElement.js
+++ b/
modules/documentCanvas/canvas/documentElement.js
@@
-163,7
+163,8
@@
$.extend(DocumentNodeElement.prototype, {
node.attr('class', this.getWlxmlClass());
var meta = this.getWlxmlMetaAttrs();
meta.forEach(function(attr) {
node.attr('class', this.getWlxmlClass());
var meta = this.getWlxmlMetaAttrs();
meta.forEach(function(attr) {
- node.attr('meta-' + attr.name, attr.value);
+ if(attr.value)
+ node.attr('meta-' + attr.name, attr.value);
});
_.keys(this.data('other-attrs') || {}).forEach(function(key) {
node.attr(key, this.data('other-attrs')[key]);
});
_.keys(this.data('other-attrs') || {}).forEach(function(key) {
node.attr(key, this.data('other-attrs')[key]);