Sfoglia il codice sorgente

Merge pull request #1115 from jitsi/remove_css_classes

Removes unused css classes
j8
yanas 9 anni fa
parent
commit
6d1f42bf30
2 ha cambiato i file con 2 aggiunte e 2 eliminazioni
  1. 1
    1
      index.html
  2. 1
    1
      modules/UI/videolayout/RemoteVideo.js

+ 1
- 1
index.html Vedi File

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

+ 1
- 1
modules/UI/videolayout/RemoteVideo.js Vedi File

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

Loading…
Annulla
Salva