diff options
author | Dan McGee <dan@archlinux.org> | 2013-04-16 22:12:01 -0500 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2013-04-16 22:12:01 -0500 |
commit | b7b24740640e24883cd17fd683e1d465fbb343f8 (patch) | |
tree | 0a8a4fdf23f3a3b7f0551e859c36c23e3afe212f /visualize/static | |
parent | 31d39e75eea7fb6cdf3bb8bfd8b490d45de04ee9 (diff) |
Various minor code cleanups and fixesrelease_2013-04-16
Most of these were suggested by PyCharm, and include everything from
little syntax issues and other bad smells to dead or bad code.
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'visualize/static')
-rw-r--r-- | visualize/static/visualize.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/visualize/static/visualize.js b/visualize/static/visualize.js index 7e240d44..5004fe6c 100644 --- a/visualize/static/visualize.js +++ b/visualize/static/visualize.js @@ -55,7 +55,7 @@ function packages_treemap(chart_id, orderings, default_order) { var nodes = d3_div.data([json]).selectAll("div") .data(treemap.nodes, key_func); /* start out new nodes in the center of the picture area */ - var w_center = jq_div.width() / 2; + var w_center = jq_div.width() / 2, h_center = jq_div.height() / 2; nodes.enter().append("div") .attr("class", "treemap-cell") |