Преглед изворни кода

Wait until later to show "thousand" - around 100,000 now

tags/v0.1.0
Fen Dweller пре 5 година
родитељ
комит
b8bb2e0281
No known key found for this signature in database GPG Key ID: E80B35A6F11C3656
1 измењених фајлова са 2 додато и 2 уклоњено
  1. +2
    -2
      numbers.js

+ 2
- 2
numbers.js Прегледај датотеку

@@ -6,7 +6,7 @@ function numberTextSmall(val, places = 1, smallPlaces = 0) {
if (isNaN(val)) {
throw new RangeError("Invalid number: " + val);
}
if (val < 1000) {
if (val < Math.pow(10, (places+2))) {
return round(val, smallPlaces);
}

@@ -26,7 +26,7 @@ function numberText(val, places = 1, smallPlaces = 0) {
if (isNaN(val)) {
throw new RangeError("Invalid number: " + val);
}
if (val < 1000) {
if (val < Math.pow(10, (places+2))) {
return round(val, smallPlaces);
}



Loading…
Откажи
Сачувај