mirror of
https://github.com/Kunsi/pretalx-plugin-broadcast-tools
synced 2024-10-31 23:05:53 +00:00
show in frontend if we're waiting for a schedule update
This commit is contained in:
parent
818b474bc4
commit
bc7f5414bd
1 changed files with 7 additions and 2 deletions
|
@ -17,8 +17,13 @@ function update_lower_third() {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!schedule || !event_info) {
|
if (!event_info) {
|
||||||
console.warn("There's no schedule or no event info yet, exiting ...");
|
console.warn("There's no event info yet, exiting");
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!schedule) {
|
||||||
|
$('#l3title').text('Waiting for schedule ...')
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue