fix free relations loading
This commit is contained in:
2
webRequest.js
Normal file → Executable file
2
webRequest.js
Normal file → Executable file
@@ -59,7 +59,7 @@ function createFreeRelations(docEle){
|
|||||||
if (theChild.childNodes.length>0){
|
if (theChild.childNodes.length>0){
|
||||||
createFreeRelations(theChild);
|
createFreeRelations(theChild);
|
||||||
}
|
}
|
||||||
if (theChild.nodeName=="NODEREL"){
|
if (theChild.nodeName.toUpperCase()=="NODEREL"){
|
||||||
if (theChild.getAttribute("relationtype")!="main"){
|
if (theChild.getAttribute("relationtype")!="main"){
|
||||||
var newNodeRel=new nodeRel().fromXML(theChild);
|
var newNodeRel=new nodeRel().fromXML(theChild);
|
||||||
newNodeRel.redraw();
|
newNodeRel.redraw();
|
||||||
|
|||||||
Reference in New Issue
Block a user