mirror of
https://github.com/Kunsi/pretalx-plugin-broadcast-tools
synced 2025-04-03 10:34:39 +00:00
Fix "X min remaining" for events longer than 59min
This commit is contained in:
parent
ade18a033e
commit
a3435e518f
1 changed files with 1 additions and 1 deletions
|
@ -67,7 +67,7 @@ function update_room_info() {
|
|||
} else {
|
||||
diff = scheduled_end - now;
|
||||
let diff_s = Math.floor(Math.floor(diff / 1000) % 60);
|
||||
let diff_m = Math.floor(diff / 1000 / 60) % 60;
|
||||
let diff_m = Math.floor(diff / 1000 / 60);
|
||||
|
||||
timeleft.innerHTML = diff_m + 'min ' + diff_s + 'sec';
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue