mirror of
https://github.com/ivabus/www
synced 2024-11-22 18:45:06 +03:00
Comma the individual number as well.
This commit is contained in:
parent
a5bcd9ff66
commit
78f1b281ab
1 changed files with 2 additions and 1 deletions
|
@ -99,7 +99,8 @@ integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+
|
|||
});
|
||||
|
||||
if (localStorage['signup'].match(/:::/)) {
|
||||
const [username, serial] = localStorage.signup.split(':::');
|
||||
const [username, serial_] = localStorage.signup.split(':::');
|
||||
const serial = (+serial_).toLocaleString()
|
||||
$('.box-auth-true').show();
|
||||
$('.box-auth-false').hide();
|
||||
$('#auth-username').html(username);
|
||||
|
|
Loading…
Reference in a new issue