Browse Source

Use correct variable name.

pull/404/head
Joachim Bauch 10 years ago
parent
commit
b6240674b4
No known key found for this signature in database
GPG Key ID: 77C1D22D53E15F02
  1. 4
      static/js/controllers/uicontroller.js

4
static/js/controllers/uicontroller.js

@ -319,8 +319,8 @@ define(['jquery', 'underscore', 'bigscreen', 'moment', 'sjcl', 'modernizr', 'tex @@ -319,8 +319,8 @@ define(['jquery', 'underscore', 'bigscreen', 'moment', 'sjcl', 'modernizr', 'tex
mediaStream.webrtc.setVideoMute(cameraMute);
});
$scope.$watch("microphoneMute", function(cameraMute) {
mediaStream.webrtc.setAudioMute(cameraMute);
$scope.$watch("microphoneMute", function(microphoneMute) {
mediaStream.webrtc.setAudioMute(microphoneMute);
});
$scope.$watch("peer", function(c, o) {

Loading…
Cancel
Save