Always show number of participants badge in toolbar.

Includes showing 1 when user is alone in the room.
pull/921/head
damencho 9 years ago
parent cfeb03740c
commit febaf49d07
  1. 5
      modules/UI/side_pannels/contactlist/ContactList.js

@ -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…
Cancel
Save