mirror of
https://github.com/IonicaBizau/git-stats.git
synced 2024-12-22 05:12:11 +01:00
Removed debugger
This commit is contained in:
parent
4433dd11da
commit
a69c63aa22
1 changed files with 0 additions and 2 deletions
|
@ -330,12 +330,10 @@ GitStats.authorsPie = function (options, callback) {
|
|||
if (authors.length > 50) {
|
||||
var others = {
|
||||
value: authors.slice(50).reduce(function (a, b) {
|
||||
debugger
|
||||
return a + b.value;
|
||||
}, 0)
|
||||
, label: "Others"
|
||||
};
|
||||
debugger
|
||||
authors = authors.slice(0, 50);
|
||||
authors.push(others);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue