mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-06-01 08:34:18 -04:00
Merge branch 'withoutYAML' into develop
This commit is contained in:
commit
027857b261
1 changed files with 6 additions and 2 deletions
|
@ -75,11 +75,15 @@ angular.module('RoomController', ['ngSanitize', 'mFileInput'])
|
|||
});
|
||||
|
||||
$scope.$on(eventHandlerService.MEMBER_EVENT, function(ngEvent, event, isLive) {
|
||||
updateMemberList(event);
|
||||
if (isLive) {
|
||||
updateMemberList(event);
|
||||
}
|
||||
});
|
||||
|
||||
$scope.$on(eventHandlerService.PRESENCE_EVENT, function(ngEvent, event, isLive) {
|
||||
updatePresence(event);
|
||||
if (isLive) {
|
||||
updatePresence(event);
|
||||
}
|
||||
});
|
||||
|
||||
$scope.memberCount = function() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue