瀏覽代碼

fix(Thumbnails): removes unused css classes

master
hristoterezov 8 年之前
父節點
當前提交
c41c219206
共有 2 個檔案被更改,包括 2 行新增2 行删除
  1. 1
    1
      index.html
  2. 1
    1
      modules/UI/videolayout/RemoteVideo.js

+ 1
- 1
index.html 查看文件

@@ -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 查看文件

@@ -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';

Loading…
取消
儲存