Skip to content
Snippets Groups Projects
Commit 72793d4d authored by Rob Sherwood's avatar Rob Sherwood
Browse files

topology ui: more error conditions

still finding links with undefined references

this is a bandaid fix for Interop -- need to rewrite
parent 29671bff
No related branches found
No related tags found
No related merge requests found
......@@ -26,7 +26,7 @@ window.TopologyView = Backbone.View.extend({
$(this.el).html(this.template());
// code from D3 force-directed graph example since there's no other docs
var width = 900,
height = 900; // might as well make it square
height = 600; // might as well make it square
var color = d3.scale.category20();
var force = d3.layout.force()
.charge(-120)
......@@ -68,7 +68,11 @@ window.TopologyView = Backbone.View.extend({
target:all_nodes_map[host.attributes['attachment-points'][j]['switch']],
value:10};
console.log(link);
this.host_links.push(link);
if ( link.source && link.target) {
this.host_links.push(link);
} else {
console.log("Error: skipping link with undefined stuff!")
}
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment