Merge pull request #1115 from jitsi/remove_css_classes
Removes unused css classes
This commit is contained in:
commit
6d1f42bf30
|
@ -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 -->
|
||||
|
|
|
@ -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';
|
||||
|
|
Loading…
Reference in New Issue