Переглянути джерело

fix(Thumbnails): removes unused css classes

j8
hristoterezov 9 роки тому
джерело
коміт
c41c219206
2 змінених файлів з 2 додано та 2 видалено
  1. 1
    1
      index.html
  2. 1
    1
      modules/UI/videolayout/RemoteVideo.js

+ 1
- 1
index.html Переглянути файл

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 Переглянути файл

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

Завантаження…
Відмінити
Зберегти