mirror of
https://github.com/ivabus/www
synced 2024-11-23 00:45:12 +03:00
Use toLocaleString() to get better numerical formatting
This commit is contained in:
parent
a7e331e465
commit
36324f8742
1 changed files with 9 additions and 8 deletions
|
@ -121,16 +121,17 @@ integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+
|
||||||
fetch('https://app.tea.xyz/api/signups')
|
fetch('https://app.tea.xyz/api/signups')
|
||||||
.then(res => res.json())
|
.then(res => res.json())
|
||||||
.then(res => {
|
.then(res => {
|
||||||
|
const signups = res.signups ? res.signups.toLocaleString() : ""
|
||||||
if (!(localStorage['signup'] || '').match(/:::/)) {
|
if (!(localStorage['signup'] || '').match(/:::/)) {
|
||||||
$('#count').html(res.signups)
|
$('#count').html(signups)
|
||||||
}
|
}
|
||||||
$('#count1').html(res.signups)
|
$('#count1').html(signups)
|
||||||
$('#count2').html(res.signups)
|
$('#count2').html(signups)
|
||||||
$('#count3').html(res.signups)
|
$('#count3').html(signups)
|
||||||
$('#count4').html(res.signups)
|
$('#count4').html(signups)
|
||||||
$('#count5').html(res.signups)
|
$('#count5').html(signups)
|
||||||
$('#count6').html(res.signups)
|
$('#count6').html(signups)
|
||||||
$('#count7').html(res.signups)
|
$('#count7').html(signups)
|
||||||
})
|
})
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
console.error(e)
|
console.error(e)
|
||||||
|
|
Loading…
Reference in a new issue