Skip to content
Snippets Groups Projects
Commit 027857b2 authored by Emmanuel ROHEE's avatar Emmanuel ROHEE
Browse files

Merge branch 'withoutYAML' into develop

parents 68a04b92 07d609cb
No related branches found
No related tags found
No related merge requests found
...@@ -75,11 +75,15 @@ angular.module('RoomController', ['ngSanitize', 'mFileInput']) ...@@ -75,11 +75,15 @@ angular.module('RoomController', ['ngSanitize', 'mFileInput'])
}); });
$scope.$on(eventHandlerService.MEMBER_EVENT, function(ngEvent, event, isLive) { $scope.$on(eventHandlerService.MEMBER_EVENT, function(ngEvent, event, isLive) {
updateMemberList(event); if (isLive) {
updateMemberList(event);
}
}); });
$scope.$on(eventHandlerService.PRESENCE_EVENT, function(ngEvent, event, isLive) { $scope.$on(eventHandlerService.PRESENCE_EVENT, function(ngEvent, event, isLive) {
updatePresence(event); if (isLive) {
updatePresence(event);
}
}); });
$scope.memberCount = function() { $scope.memberCount = function() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment