diff options
author | Determinant <[email protected]> | 2014-12-28 00:33:01 +0800 |
---|---|---|
committer | Determinant <[email protected]> | 2014-12-28 00:33:01 +0800 |
commit | dbfcc4082aa20ec7b3661a2dbd9716e91a4a34cc (patch) | |
tree | b5a01b33d19ba3c90343ad101320f9ad328d2e11 /assets | |
parent | e2ffca3d814f18b24497a7ed7b30d7c921e6f3c3 (diff) |
...
Diffstat (limited to 'assets')
-rw-r--r-- | assets/js/monitor.js | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/assets/js/monitor.js b/assets/js/monitor.js index 2d46355..7ef1df3 100644 --- a/assets/js/monitor.js +++ b/assets/js/monitor.js @@ -170,8 +170,6 @@ LineGraph.prototype.setup = function(elem, d, i, b) { "translate(" + margin.left + "," + margin.top + ")"); var width = 500 - margin.left - margin.right; var height = 250 - margin.top - margin.bottom; - console.log(width); - console.log(height); // Set the ranges this.x = d3.scale.linear().range([0, width]); this.y = d3.scale.linear().range([height, 0]); @@ -330,7 +328,6 @@ function update_jobs(resp, after) { this.handler = new graph_handler[d.metadata.type](); this.handler.setup(this, d, i, b); }); - console.log(jobs.exit()); jobs.exit() .style("height", function(d) { return d3.select(this).style("height"); }) .transition().duration(750) |