Browse Source

Fixes issue with video mute indicator.

j8
hristoterezov 10 years ago
parent
commit
520e655100
3 changed files with 5 additions and 4 deletions
  1. 1
    1
      index.html
  2. 3
    2
      libs/app.bundle.js
  3. 1
    1
      modules/RTC/RTC.js

+ 1
- 1
index.html View File

19
     <script src="libs/popover.js?v=1"></script><!-- bootstrap tooltip lib -->
19
     <script src="libs/popover.js?v=1"></script><!-- bootstrap tooltip lib -->
20
     <script src="libs/toastr.js?v=1"></script><!-- notifications lib -->
20
     <script src="libs/toastr.js?v=1"></script><!-- notifications lib -->
21
     <script src="interface_config.js?v=5"></script>
21
     <script src="interface_config.js?v=5"></script>
22
-    <script src="libs/app.bundle.js?v=50"></script>
22
+    <script src="libs/app.bundle.js?v=51"></script>
23
     <script src="analytics.js?v=1"></script><!-- google analytics plugin -->
23
     <script src="analytics.js?v=1"></script><!-- google analytics plugin -->
24
     <link rel="stylesheet" href="css/font.css?v=6"/>
24
     <link rel="stylesheet" href="css/font.css?v=6"/>
25
     <link rel="stylesheet" href="css/toastr.css?v=1">
25
     <link rel="stylesheet" href="css/toastr.css?v=1">

+ 3
- 2
libs/app.bundle.js
File diff suppressed because it is too large
View File


+ 1
- 1
modules/RTC/RTC.js View File

151
         }
151
         }
152
 
152
 
153
         if(!stream)
153
         if(!stream)
154
-            return false;
154
+            return true;
155
 
155
 
156
         if (value != stream.muted) {
156
         if (value != stream.muted) {
157
             stream.setMute(value);
157
             stream.setMute(value);

Loading…
Cancel
Save