mirror of
https://github.com/craigerl/aprsd.git
synced 2024-12-21 17:11:01 -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:
parent
8529f1f8d1
commit
3a8b8f26dd
@ -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) {
|
||||||
|
Loading…
Reference in New Issue
Block a user