Removed debugger

This commit is contained in:
Ionică Bizău 2015-07-08 11:00:49 +03:00
parent 4433dd11da
commit a69c63aa22
1 changed files with 0 additions and 2 deletions

View File

@ -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);
}