mirror of
https://github.com/Kunsi/pretalx-plugin-broadcast-tools
synced 2024-12-04 19:02:44 +00:00
room_timer: it is confusing for speakers if the timer does not move every second
This commit is contained in:
parent
fec30e79ff
commit
de0c4721ed
1 changed files with 2 additions and 2 deletions
|
@ -59,10 +59,10 @@ function update_room_info() {
|
|||
timehint.innerHTML = 'talk has ended';
|
||||
} else {
|
||||
diff = scheduled_end - now;
|
||||
let diff_s = Math.floor(Math.floor(diff / 1000) % 60/10);
|
||||
let diff_s = Math.floor(Math.floor(diff / 1000) % 60);
|
||||
let diff_m = Math.floor(diff / 1000 / 60) % 60;
|
||||
|
||||
timeleft.innerHTML = diff_m + 'min ' + diff_s + '0sec';
|
||||
timeleft.innerHTML = diff_m + 'min ' + diff_s + 'sec';
|
||||
|
||||
total_time = scheduled_end - scheduled_start;
|
||||
progressbar_bar.style.width = (((diff/total_time)*100)-100)*-1 + 'vw';
|
||||
|
|
Loading…
Reference in a new issue