fix(PageReloadOverlay): do not log message every second

This commit is contained in:
paweldomas 2016-10-21 10:17:01 -05:00
parent 8f8b1385fa
commit 5bc727804f
1 changed files with 3 additions and 1 deletions

View File

@ -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 {