cloud_bbb/ts/waiting.ts

22 lines
451 B
TypeScript
Raw Permalink Normal View History

import './waiting.scss';
$(() => {
let countdown = 30;
const interval = window.setInterval(() => {
2020-09-08 17:22:12 +02:00
$('#bbb-waiting-text').text(
2020-09-09 11:31:49 +02:00
n(
2020-09-08 17:22:12 +02:00
'bbb',
'This room is not open yet. We will try it again in %n second. Please wait.',
2020-09-09 11:31:49 +02:00
'This room is not open yet. We will try it again in %n seconds. Please wait.',
2020-09-08 17:22:12 +02:00
--countdown
)
);
if (countdown === 0) {
window.location.reload();
window.clearInterval(interval);
}
}, 1000);
});