fix(Thumbnails): removes unused css classes

This commit is contained in:
hristoterezov 2016-11-04 15:24:05 -05:00
parent 4d335e086b
commit c41c219206
2 changed files with 2 additions and 2 deletions

View File

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

View File

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