Counter fix

This commit is contained in:
Kevin Röbert
2017-08-23 14:01:48 +02:00
parent b07cd8c62c
commit 36d5cdd016
2 changed files with 54 additions and 29 deletions

View File

@@ -70,7 +70,7 @@ function changeStatistics(){
globalURLCounter = 0;
}
globalPercentage.text((globalCounter/globalURLCounter).toFixed(3)*100+"%");
globalPercentage.text(((globalCounter/globalURLCounter)*100).toFixed(3)+"%");
});
};