Skip to content
Snippets Groups Projects
Commit eea5c331 authored by Mike Cohen's avatar Mike Cohen
Browse files

Revert window size in topology - doesn't work for larger topologies.

parent 4a26c0c3
No related branches found
No related tags found
No related merge requests found
......@@ -25,8 +25,8 @@ window.TopologyView = Backbone.View.extend({
render:function (eventName) {
$(this.el).html(this.template());
// code from D3 force-directed graph example since there's no other docs
var width = 500,
height = 400; // might as well make it square
var width = 900,
height = 900; // might as well make it square
var color = d3.scale.category20();
var force = d3.layout.force()
.charge(-120)
......
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