fix(PageReloadOverlay): do not log message every second
This commit is contained in:
parent
8f8b1385fa
commit
5bc727804f
|
@ -70,7 +70,6 @@ function start(timeoutSeconds) {
|
|||
|
||||
if (timeLeft >= 1) {
|
||||
timeLeft -= 1;
|
||||
console.info("Reloading in " + timeLeft + " seconds...");
|
||||
}
|
||||
|
||||
updateDisplay();
|
||||
|
@ -80,6 +79,9 @@ function start(timeoutSeconds) {
|
|||
APP.ConferenceUrl.reload();
|
||||
}
|
||||
}, 1000);
|
||||
|
||||
console.info(
|
||||
"The conference will be reloaded after " + timeLeft + " seconds.");
|
||||
}
|
||||
|
||||
export default {
|
||||
|
|
Loading…
Reference in New Issue