~ubuntu-branches/ubuntu/precise/whoopsie-daisy/precise-proposed

« back to all changes in this revision

Viewing changes to backend/stats/static/js/d3/src/svg/area-radial.js

  • Committer: Package Import Robot
  • Author(s): Evan Dandrea
  • Date: 2012-04-10 14:28:58 UTC
  • Revision ID: package-import@ubuntu.com-20120410142858-nk453o1z7t7py3bs
Tags: 0.1.26
* Take ownership of the NetworkManager state variant on setup and
  unref it, plugging a memory leak.
* Log the reason the server rejected the submitted crash report.
* Send the Whoopsie version with each crash submission.
* Delete both .upload and .uploaded files after 14 days. Thanks
  Marc Deslauriers (LP: #973687).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
d3.svg.area.radial = function() {
 
2
  var area = d3_svg_area(d3_svg_lineRadial);
 
3
  area.radius = area.x, delete area.x;
 
4
  area.innerRadius = area.x0, delete area.x0;
 
5
  area.outerRadius = area.x1, delete area.x1;
 
6
  area.angle = area.y, delete area.y;
 
7
  area.startAngle = area.y0, delete area.y0;
 
8
  area.endAngle = area.y1, delete area.y1;
 
9
  return area;
 
10
};