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

@ -1,7 +1,7 @@
{
"manifest_version": 2,
"name": "ClearURLs",
"version": "1.1.1.0",
"version": "1.1.1.1",
"author": "Kevin R., Arne S.",
"description": "Remove tracking elements form URLs. ",
"homepage_url": "https://github.com/KevinRoebert/ClearUrls",

View File

@ -10,7 +10,7 @@
</head>
<body>
<div id="main">
<div class="header">ClearURLs 1.1.1.0</div>
<div class="header">ClearURLs 1.1.1.1</div>
<div id="content">
<div id="default">
<div id="global">

View File

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