mirror of
https://github.com/Kunsi/pretalx-plugin-broadcast-tools
synced 2024-11-21 20:51:03 +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
|
||||
}
|
||||
|
||||
if (!schedule || !event_info) {
|
||||
console.warn("There's no schedule or no event info yet, exiting ...");
|
||||
if (!event_info) {
|
||||
console.warn("There's no event info yet, exiting");
|
||||
return
|
||||
}
|
||||
|
||||
if (!schedule) {
|
||||
$('#l3title').text('Waiting for schedule ...')
|
||||
return
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue