mirror of
https://github.com/Kunsi/pretalx-plugin-broadcast-tools
synced 2025-04-29 19:30:59 +00:00
add some settings for 'currently no talk running', add configurable info line
This commit is contained in:
parent
a4ad26ac0b
commit
18f82d1df3
8 changed files with 117 additions and 3 deletions
|
@ -28,3 +28,8 @@
|
|||
#speaker {
|
||||
font-size: 20px;
|
||||
}
|
||||
|
||||
#info_line {
|
||||
font-size: 16px;
|
||||
text-align: right;
|
||||
}
|
||||
|
|
|
@ -49,9 +49,11 @@ function update_lower_third() {
|
|||
if (current_talk) {
|
||||
$('#title').text(current_talk['title']);
|
||||
$('#speaker').text(current_talk['persons'].join(', '));
|
||||
$('#info_line').text(current_talk['infoline']);
|
||||
} else {
|
||||
$('#title').text('Currently no talk');
|
||||
$('#title').text(schedule['conference']['no_talk']);
|
||||
$('#speaker').text('');
|
||||
$('#info_line').text('');
|
||||
}
|
||||
|
||||
if (current_talk && current_talk['track']) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue