Add doughnut chart for contribution composition #77
Reference in New Issue
Block a user
Delete Branch "feature/charts"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Enables contributors to see at a glance if all areas of a project are tended to.
Chart looks nice. Code looks good, too.
Just left a little improvement suggestion.
@@ -0,0 +22,4 @@kinds[c.kind] = kinds[c.kind] + c.amount} else {kinds[c.kind] = c.amount;}I think the
if/elseblock can be simplified tokinds[c.kind] = (kinds[c.kind] || 0) + c.amount;.@@ -0,0 +22,4 @@kinds[c.kind] = kinds[c.kind] + c.amount} else {kinds[c.kind] = c.amount;}Ooh, that's a good idea!
magic ember! :)
looks good to me! pretty cool!
Thanks, everyone.