Fixes shared video thumbnail size and shared video on large background.

This commit is contained in:
yanas 2016-03-24 14:49:26 -05:00
parent 4ffafbe9a8
commit 6edbcb9311
2 changed files with 7 additions and 0 deletions

View File

@ -424,6 +424,8 @@
.sharedVideoAvatar {
height: 100%;
width: 100%;
object-fit: cover;
}
.noMic {

View File

@ -296,8 +296,11 @@ class SharedVideoContainer extends LargeContainer {
}
show () {
let self = this;
return new Promise(resolve => {
this.$iframe.fadeIn(300, () => {
self.bodyBackground = document.body.style.background;
document.body.style.background = 'black';
this.$iframe.css({opacity: 1});
resolve();
});
@ -305,8 +308,10 @@ class SharedVideoContainer extends LargeContainer {
}
hide () {
let self = this;
return new Promise(resolve => {
this.$iframe.fadeOut(300, () => {
document.body.style.background = self.bodyBackground;
this.$iframe.css({opacity: 0});
resolve();
});