Browse Source

fix(filmstrip-only): hide video label, always show remote thumbnails

master
Leonard Kim 8 years ago
parent
commit
27f968e753
2 changed files with 7 additions and 1 deletions
  1. 2
    1
      conference.js
  2. 5
    0
      css/_videolayout_default.scss

+ 2
- 1
conference.js View File

1843
             // non-participants displaying video, such as with video sharing.
1843
             // non-participants displaying video, such as with video sharing.
1844
             const remoteVideosCount = APP.UI.getRemoteVideosCount();
1844
             const remoteVideosCount = APP.UI.getRemoteVideosCount();
1845
 
1845
 
1846
-            const shouldShowRemoteThumbnails = APP.UI.isPinned(localUserId)
1846
+            const shouldShowRemoteThumbnails = interfaceConfig.filmStripOnly
1847
+                || APP.UI.isPinned(localUserId)
1847
                 || remoteVideosCount > 1
1848
                 || remoteVideosCount > 1
1848
                 || remoteParticipantsCount !== remoteVideosCount;
1849
                 || remoteParticipantsCount !== remoteVideosCount;
1849
 
1850
 

+ 5
- 0
css/_videolayout_default.scss View File

495
                     0px 0px 1px rgba(0,0,0,0.3);
495
                     0px 0px 1px rgba(0,0,0,0.3);
496
 }
496
 }
497
 
497
 
498
+.filmstrip-only {
499
+    #videoResolutionLabel {
500
+        display: none;
501
+    }
502
+}
498
 .video-state-indicator {
503
 .video-state-indicator {
499
     background: $videoStateIndicatorBackground;
504
     background: $videoStateIndicatorBackground;
500
     color: $videoStateIndicatorColor;
505
     color: $videoStateIndicatorColor;

Loading…
Cancel
Save