1
0
Fork 0
mirror of https://github.com/Kunsi/pretalx-plugin-broadcast-tools synced 2025-04-29 02:40:59 +00:00

add option to switch between feedback and public qr code

This commit is contained in:
Franzi 2023-02-28 19:10:18 +01:00
parent e0f47458cd
commit bb55df2723
Signed by: kunsi
GPG key ID: 12E3D2136B818350
4 changed files with 37 additions and 3 deletions

View file

@ -41,9 +41,15 @@ function update_room_info() {
current_talk = get_current_talk(15);
if (current_talk) {
if (event_info['room-info']['qr_type'] == 'feedback') {
qr_info = '<img src="' + current_talk['urls']['feedback_qr'] + '" alt="Feedback QR Code"><p>Leave Feedback by scanning the code or visiting ' + current_talk['urls']['feedback'] + '</p>';
} else {
qr_info = '<img src="' + current_talk['urls']['public_qr'] + '" alt="QR Code linking to URL below"><p>' + current_talk['urls']['public'] + '</p>';
}
$('#broadcast_tools_room_info_title').text(current_talk['title']);
$('#broadcast_tools_room_info_speaker').text(current_talk['persons'].join(', '));
$('#broadcast_tools_room_info_qr').html('<img src="' + current_talk['urls']['feedback_qr'] + '" alt="Feedback QR Code"><p>Leave Feedback by scanning the code or visiting ' + current_talk['urls']['feedback'] + '</p>');
$('#broadcast_tools_room_info_qr').html(qr_info);
} else {
$('#broadcast_tools_room_info_title').text(event_info['name']);
$('#broadcast_tools_room_info_speaker').text(room_name);