|
@@ -1,4 +1,4 @@
|
1
|
|
-/* global $, APP */
|
|
1
|
+/* global $, APP, interfaceConfig */
|
2
|
2
|
import Avatar from '../../avatar/Avatar';
|
3
|
3
|
import UIEvents from '../../../../service/UI/UIEvents';
|
4
|
4
|
import UIUtil from '../../util/UIUtil';
|
|
@@ -110,7 +110,8 @@ var ContactList = {
|
110
|
110
|
}
|
111
|
111
|
};
|
112
|
112
|
|
113
|
|
- newContact.appendChild(createAvatar(id));
|
|
113
|
+ if (interfaceConfig.SHOW_CONTACTLIST_AVATARS)
|
|
114
|
+ newContact.appendChild(createAvatar(id));
|
114
|
115
|
newContact.appendChild(createDisplayNameParagraph("participant"));
|
115
|
116
|
|
116
|
117
|
if (APP.conference.isLocalId(id)) {
|