3
0
Nikatlas 5 rokov pred
rodič
commit
ac9a12e702

Rozdielové dáta súboru neboli zobrazené, pretože súbor je príliš veľký
+ 0 - 0
dist/lib/helpers/graph.js


Rozdielové dáta súboru neboli zobrazené, pretože súbor je príliš veľký
+ 0 - 0
dist/lib/systems/ViewSystem.js


+ 1 - 0
lib/helpers/graph.js

@@ -62,6 +62,7 @@ class Graph{
 		let to = link.to;
 
 		if(!this.nodes[dest] || !this.nodes[to]){
+			console.log(this.nodes, dest, to);
 			throw new Error("One of the Nodes Doesnt Exist");
 		}
 		if(this.links[dest].out.has(link) || this.links[to].in.has(link)){

+ 2 - 1
lib/systems/ViewSystem.js

@@ -223,7 +223,8 @@ export class View {
 
 	import(data, parentNode) {
 		let { tree } = data;
-		this.ViewTree = new Tree();
+		if(!parentNode)
+			this.ViewTree = new Tree();
 		try {
 			this.ViewTree.import(tree, Node, parentNode);
 			this.defaultContainer = this.ViewTree.root;

Niektoré súbory nie sú zobrazené, pretože je v týchto rozdielových dátach zmenené mnoho súborov