Merge pull request #637 in FS/freeswitch from ~JAONZE/freeswitch:bugfix/FS-8654-moderator-controls-randomly-popup to master

* commit '0a9c4a6b7d16c67fa351eb9cc43b5c16101ef627':
  FS-8654 [verto_communicator] - Added event emission on hangup
This commit is contained in:
Ítalo Rossi 2015-12-22 12:05:24 -06:00
commit 0faf7a2163
2 changed files with 5 additions and 0 deletions

View File

@ -123,6 +123,10 @@
$scope.members.push(translateMember(member));
}
$rootScope.$on('hangupCall', function() {
$scope.openId = null;
});
$rootScope.$on('members.boot', function(event, members) {
$scope.$apply(function() {
clearConferenceChat();

View File

@ -470,6 +470,7 @@
verto.hangup();
$rootScope.$emit('hangupCall');
$location.path('/dialpad');
};