1
0
Fork 0
mirror of https://github.com/Kunsi/pretalx-plugin-broadcast-tools synced 2025-04-03 10:34:39 +00:00

room timer: use more standard timer layout, properly show length bigger than one hour

This commit is contained in:
Franziska Kunsmann 2025-03-10 05:20:09 +01:00
parent a3435e518f
commit 3af67e5e53

View file

@ -66,10 +66,15 @@ function update_room_info() {
timehint.innerHTML = 'talk has ended';
} else {
diff = scheduled_end - now;
let diff_s = Math.floor(Math.floor(diff / 1000) % 60);
let diff_m = Math.floor(diff / 1000 / 60);
let diff_s = Math.floor(diff / 1000) % 60;
let diff_m = Math.floor(diff / 1000 / 60) % 60;
let diff_h = Math.floor(diff / 1000 / 60 / 60);
timeleft.innerHTML = diff_m + 'min ' + diff_s + 'sec';
if (diff_h > 0) {
timeleft.innerHTML = diff_h + ":" + _left_zero_pad(diff_m) + ":" + _left_zero_pad(diff_s);
} else {
timeleft.innerHTML = diff_m + ":" + _left_zero_pad(diff_s);
}
total_time = scheduled_end - scheduled_start;
progressbar_bar.style.width = (((diff/total_time)*100)-100)*-1 + 'vw';