fnp
/
fnpeditor.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Fix: adding/clearing node widgets corrupted widgets on all children nodes
[fnpeditor.git]
/
modules
/
nodeFamilyTree
/
nodeFamilyTree.js
diff --git
a/modules/nodeFamilyTree/nodeFamilyTree.js
b/modules/nodeFamilyTree/nodeFamilyTree.js
index
0825506
..
688f353
100644
(file)
--- a/
modules/nodeFamilyTree/nodeFamilyTree.js
+++ b/
modules/nodeFamilyTree/nodeFamilyTree.js
@@
-1,8
+1,9
@@
define([
'libs/jquery-1.9.1.min',
'libs/underscore-min',
define([
'libs/jquery-1.9.1.min',
'libs/underscore-min',
+'utils/wlxml',
'libs/text!./template.html'
'libs/text!./template.html'
-], function($, _, templateSrc) {
+], function($, _,
wlxmlUtils,
templateSrc) {
'use strict';
'use strict';
@@
-39,7
+40,7
@@
return function(sandbox) {
if(nodeElementParent) {
parent = {
if(nodeElementParent) {
parent = {
- repr:
nodeElementParent.getWlxmlTag() + (nodeElementParent.getWlxmlClass() ? ' / ' + nodeElementParent.getWlxmlClass()
: '')
+ repr:
wlxmlUtils.wlxmlTagNames[nodeElementParent.getWlxmlTag()] + (nodeElementParent.getWlxmlClass() ? ' / ' + wlxmlUtils.wlxmlClassNames[nodeElementParent.getWlxmlClass()]
: '')
};
}
};
}
@@
-58,7
+59,7
@@
return function(sandbox) {
}
children.push({repr: _.escape(text), bold: child.sameNode(textElement)});
} else {
}
children.push({repr: _.escape(text), bold: child.sameNode(textElement)});
} else {
- children.push({repr:
child.getWlxmlTag() + (child.getWlxmlClass() ? ' / ' + child.getWlxmlClass()
: '')});
+ children.push({repr:
wlxmlUtils.wlxmlTagNames[child.getWlxmlTag()] + (child.getWlxmlClass() ? ' / ' + wlxmlUtils.wlxmlClassNames[child.getWlxmlClass()]
: '')});
}
});
this.dom.empty();
}
});
this.dom.empty();