Removed libcurl dependency and fixed avgTime round in dashboard

This commit is contained in:
BenDroid 2017-11-07 18:51:55 +01:00
parent 46435ce520
commit f914e6d46c
7 changed files with 45 additions and 23 deletions

View file

@ -96,12 +96,12 @@ $(document).ready(function() {
return a + b;
}, 0 );
avgTimeTotal = api
avgTimeTotal = round(api
.column(9)
.data()
.reduce( function (a, b) {
return a + b;
}, 0 )/end;
}, 0 )/end);
sumSharesGood = api
.column(10)