fix(Thumbnails): removes unused css classes

pull/1115/head
hristoterezov 8 years ago
parent 4d335e086b
commit c41c219206
  1. 2
      index.html
  2. 2
      modules/UI/videolayout/RemoteVideo.js

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

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

Loading…
Cancel
Save