percentage fix

This commit is contained in:
Kevin Röbert
2017-08-23 02:50:07 +02:00
parent c7e0169840
commit b07cd8c62c
3 changed files with 3 additions and 3 deletions

View File

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