diff options
author | David Baker <dbkr@matrix.org> | 2014-09-18 11:04:45 +0100 |
---|---|---|
committer | David Baker <dbkr@matrix.org> | 2014-09-18 11:04:45 +0100 |
commit | e932e5237eaea4c08e6f7bcd849e4be6bd2e3f98 (patch) | |
tree | ab22cc46fc524a81c986646a88c474cecfeaaca0 /webclient/components | |
parent | Video calling (in a tiny box at the moment) (diff) | |
download | synapse-e932e5237eaea4c08e6f7bcd849e4be6bd2e3f98.tar.xz |
WIP video chat layout
Diffstat (limited to 'webclient/components')
-rw-r--r-- | webclient/components/matrix/matrix-call.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/webclient/components/matrix/matrix-call.js b/webclient/components/matrix/matrix-call.js index 2f0bfddaf5..636259297e 100644 --- a/webclient/components/matrix/matrix-call.js +++ b/webclient/components/matrix/matrix-call.js @@ -167,6 +167,8 @@ angular.module('MatrixCall', []) MatrixCall.prototype.hangup = function(suppressEvent) { console.log("Ending call "+this.call_id); + this.remoteVideoElement.pause(); + this.stopAllMedia(); if (this.peerConn) this.peerConn.close(); |