Add default currency string

This commit is contained in:
Vortrex
2022-09-04 15:47:31 -05:00
parent 1ebbcb2a86
commit 7908c756f7

View File

@@ -8,7 +8,7 @@
// TYPE: Client (JavaScript)
// ===========================================================================
let currencyString = "{AMOUNT}";
let currencyString = "${AMOUNT}";
// ===========================================================================
@@ -18,10 +18,4 @@ function getCurrencyString(amount) {
return tempString;
}
// ===========================================================================
function receiveCurrencyStringFromServer(newCurrencyString) {
currencyString = newCurrencyString;
}
// ===========================================================================