0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-06-30 16:38:21 +02:00

Merge branch 'withoutYAML' into develop

This commit is contained in:
Emmanuel ROHEE 2014-09-02 10:19:37 +02:00
commit 027857b261

View file

@ -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() {