1
0
Fork 0
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:
Franzi 2021-11-20 17:46:05 +01:00
parent a4ad26ac0b
commit 18f82d1df3
Signed by: kunsi
GPG key ID: 12E3D2136B818350
8 changed files with 117 additions and 3 deletions

View file

@ -28,3 +28,8 @@
#speaker {
font-size: 20px;
}
#info_line {
font-size: 16px;
text-align: right;
}

View file

@ -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']) {