1
0
mirror of https://github.com/craigerl/aprsd.git synced 2024-12-22 01:20:59 -05:00

Fixed webchat popovers not working.

We have to call reload_popovers() every time we insert
new chat bubbles or the popovers on the new bubbles won't work.
This commit is contained in:
Hemna 2024-11-26 12:59:37 -05:00
parent 8529f1f8d1
commit 3a8b8f26dd

View File

@ -507,6 +507,7 @@ function sent_msg(msg) {
append_message(msg['to_call'], msg, msg_html); append_message(msg['to_call'], msg, msg_html);
save_data(); save_data();
scroll_main_content(msg['to_call']); scroll_main_content(msg['to_call']);
reload_popovers();
} }
function from_msg(msg) { function from_msg(msg) {
@ -533,6 +534,7 @@ function from_msg(msg) {
append_message(from, msg, msg_html); append_message(from, msg, msg_html);
save_data(); save_data();
scroll_main_content(from); scroll_main_content(from);
reload_popovers();
} }
function ack_msg(msg) { function ack_msg(msg) {