Merge pull request #1115 from jitsi/remove_css_classes

Removes unused css classes
This commit is contained in:
yanas 2016-11-16 13:00:26 -06:00 committed by GitHub
commit 6d1f42bf30
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

@ -628,7 +628,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';