1 files changed, 0 insertions, 8 deletions
diff --git a/webclient/app-controller.js b/webclient/app-controller.js
index 4a57f66ef0..f28da87ccc 100644
--- a/webclient/app-controller.js
+++ b/webclient/app-controller.js
@@ -142,14 +142,6 @@ angular.module('MatrixWebClientController', ['matrixService', 'mPresence', 'even
$scope.hangupCall = function() {
$rootScope.currentCall.hangup();
-
- $timeout(function() {
- var icon = angular.element('#callEndedIcon');
- $animate.addClass(icon, 'callIconRotate');
- $timeout(function(){
- $rootScope.currentCall = undefined;
- }, 4070);
- }, 100);
};
$rootScope.onCallError = function(errStr) {
|