Преглед изворни кода

Merge pull request #1115 from jitsi/remove_css_classes

Removes unused css classes
j8
yanas пре 8 година
родитељ
комит
6d1f42bf30
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 Прегледај датотеку

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

Loading…
Откажи
Сачувај