Update loading screen message
Signed-off-by: ajbura <ajbura@gmail.com>
This commit is contained in:
parent
1f6e5e71ef
commit
96b6b56d95
1 changed files with 2 additions and 2 deletions
|
@ -25,7 +25,7 @@ function Client() {
|
||||||
let counter = 0;
|
let counter = 0;
|
||||||
const iId = setInterval(() => {
|
const iId = setInterval(() => {
|
||||||
const msgList = [
|
const msgList = [
|
||||||
'Sometimes it takes a while...',
|
'Almost there...',
|
||||||
'Looks like you have a lot of stuff to heat up!',
|
'Looks like you have a lot of stuff to heat up!',
|
||||||
];
|
];
|
||||||
if (counter === msgList.length - 1) {
|
if (counter === msgList.length - 1) {
|
||||||
|
@ -35,7 +35,7 @@ function Client() {
|
||||||
}
|
}
|
||||||
setLoadingMsg(msgList[counter]);
|
setLoadingMsg(msgList[counter]);
|
||||||
counter += 1;
|
counter += 1;
|
||||||
}, 9000);
|
}, 15000);
|
||||||
initMatrix.once('init_loading_finished', () => {
|
initMatrix.once('init_loading_finished', () => {
|
||||||
clearInterval(iId);
|
clearInterval(iId);
|
||||||
changeLoading(false);
|
changeLoading(false);
|
||||||
|
|
Loading…
Reference in a new issue