Add ability to create a new organization

This commit is contained in:
Joseph Schorr 2013-11-07 15:19:52 -05:00
parent 70c02eae16
commit 44f1ff0ef1
8 changed files with 373 additions and 62 deletions

View file

@ -1173,7 +1173,7 @@ RepositoryUsageChart.prototype.drawInternal_ = function() {
var count = this.count_;
var total = this.total_;
var data = [count, Math.max(0, total - count)];
var data = [Math.max(count, 1), Math.max(0, total - count)];
var arcTween = function(a) {
var i = d3.interpolate(this._current, a);