Notify calls in sidebar

This commit is contained in:
2020-04-13 14:51:22 +02:00
parent d6c9321024
commit 34be87c096
2 changed files with 54 additions and 13 deletions

View File

@ -576,6 +576,25 @@ const SidebarMain = {
innerHTML: timeDiffToStr(conv.last_active)
});
// Check if there is an ongoing call on the conversation
if(conv.has_call_now) {
li.classList.add("with-call");
let callLi = createElem2({
appendTo: target,
type: "li",
class: "call_notice"
});
let a = createElem2({
appendTo: callLi,
type: "a",
onclick: () => CallsController.Open(conv),
innerHTML: "<i class='fa fa-phone'></i> <span>Ongoing call</span>"
});
}
},
/**