1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-02-02 09:55:55 +00:00

webUI: increase the number of digits after the decimal point

This commit is contained in:
thalieht 2017-05-05 20:09:04 +03:00
parent 706097ddda
commit e075274177

View File

@ -18,11 +18,18 @@ function friendlyUnit(value, isSpeed) {
value /= 1024.; value /= 1024.;
++i; ++i;
} }
function friendlyUnitPrecision(sizeUnit) {
if (sizeUnit <= 2) return 1; // KiB, MiB
else if (sizeUnit === 3) return 2; // GiB
else return 3; // TiB, PiB, EiB
}
var ret; var ret;
if (i == 0) if (i == 0)
ret = value + " " + units[i]; ret = value + " " + units[i];
else else
ret = (Math.floor(10 * value) / 10).toFixed(1) //Don't round up ret = (Math.floor(10 * value) / 10).toFixed(friendlyUnitPrecision(i)) //Don't round up
+ " " + units[i]; + " " + units[i];
if (isSpeed) if (isSpeed)