fnp
/
fnpeditor.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Fixing xml output - entities
[fnpeditor.git]
/
modules
/
nodeFamilyTree
/
nodeFamilyTree.js
diff --git
a/modules/nodeFamilyTree/nodeFamilyTree.js
b/modules/nodeFamilyTree/nodeFamilyTree.js
index
af5d4d7
..
0825506
100644
(file)
--- a/
modules/nodeFamilyTree/nodeFamilyTree.js
+++ b/
modules/nodeFamilyTree/nodeFamilyTree.js
@@
-49,14
+49,14
@@
return function(sandbox) {
if(child.getText) {
var text = child.getText();
if(!text)
if(child.getText) {
var text = child.getText();
if(!text)
- text = '
<pusty tekst>
';
+ text = '
<pusty tekst>
';
else {
if(text.length > 13) {
text = text.substr(0,13) + '...';
}
text = '"' + text + '"';
}
else {
if(text.length > 13) {
text = text.substr(0,13) + '...';
}
text = '"' + text + '"';
}
- children.push({repr:
text
, bold: child.sameNode(textElement)});
+ children.push({repr:
_.escape(text)
, bold: child.sameNode(textElement)});
} else {
children.push({repr: child.getWlxmlTag() + (child.getWlxmlClass() ? ' / ' + child.getWlxmlClass() : '')});
}
} else {
children.push({repr: child.getWlxmlTag() + (child.getWlxmlClass() ? ' / ' + child.getWlxmlClass() : '')});
}