Parcourir la source

fix(Thumbnails): removes unused css classes

master
hristoterezov il y a 8 ans
Parent
révision
c41c219206
2 fichiers modifiés avec 2 ajouts et 2 suppressions
  1. 1
    1
      index.html
  2. 1
    1
      modules/UI/videolayout/RemoteVideo.js

+ 1
- 1
index.html Voir le fichier

@@ -168,7 +168,7 @@
168 168
             </div>
169 169
             <div class="filmstrip">
170 170
                 <div class="filmstrip__videos" id="remoteVideos">
171
-                    <span id="localVideoContainer" class="videocontainer videocontainer_small">
171
+                    <span id="localVideoContainer" class="videocontainer">
172 172
                         <div class="videocontainer__background"></div>
173 173
                         <span id="localVideoWrapper">
174 174
                             <!--<video id="localVideo" autoplay muted></video> - is now per stream generated -->

+ 1
- 1
modules/UI/videolayout/RemoteVideo.js Voir le fichier

@@ -629,7 +629,7 @@ RemoteVideo.prototype.removeRemoteVideoMenu = function() {
629 629
 RemoteVideo.createContainer = function (spanId) {
630 630
     let container = document.createElement('span');
631 631
     container.id = spanId;
632
-    container.className = 'videocontainer videocontainer_remote';
632
+    container.className = 'videocontainer';
633 633
 
634 634
     let wrapper = document.createElement('div');
635 635
     wrapper.className = 'videocontainer__background';

Chargement…
Annuler
Enregistrer