Merge pull request #921 from jitsi/contaclist-title-update
Always show number of participants badge in toolbar.
This commit is contained in:
commit
b0012b4d63
|
@ -20,10 +20,7 @@ function updateNumberOfParticipants(delta) {
|
|||
return;
|
||||
}
|
||||
|
||||
let buttonIndicatorText = (numberOfContacts === 1) ? '' : numberOfContacts;
|
||||
$("#numberOfParticipants")
|
||||
.text(buttonIndicatorText)
|
||||
.parent()[numberOfContacts > 1 ? 'show' : 'hide']();
|
||||
$("#numberOfParticipants").text(numberOfContacts);
|
||||
|
||||
$("#contacts_container>div.title").text(
|
||||
APP.translation.translateString("contactlist")
|
||||
|
|
Loading…
Reference in New Issue