Browse Source

Merge pull request #1798 from virtuacoplenny/lenny/rename-hide-indicator

fix(connection-indicator): rename calls to hiding the indicator
efficient_tiling
bbaldino 8 years ago
parent
commit
a08ea37005
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      modules/UI/videolayout/VideoLayout.js

+ 2
- 2
modules/UI/videolayout/VideoLayout.js View File

@@ -837,9 +837,9 @@ var VideoLayout = {
837 837
         for (var video in remoteVideos) {
838 838
             let remoteVideo = remoteVideos[video];
839 839
             if (remoteVideo)
840
-                remoteVideo.hideIndicator();
840
+                remoteVideo.removeConnectionIndicator();
841 841
         }
842
-        localVideoThumbnail.hideIndicator();
842
+        localVideoThumbnail.removeConnectionIndicator();
843 843
     },
844 844
 
845 845
     removeParticipantContainer (id) {

Loading…
Cancel
Save