Add a public server list to the initial login page

This commit is contained in:
miruka
2020-08-19 00:17:24 -04:00
parent 1a6273681d
commit 2fa8b2c5f9
13 changed files with 402 additions and 83 deletions

View File

@@ -397,8 +397,8 @@ QtObject {
}
function round(floatNumber) {
return parseFloat(floatNumber.toFixed(2))
function round(floatNumber, decimalDigits=2) {
return parseFloat(floatNumber.toFixed(decimalDigits))
}