Merge pull request #551 from jitsi/fix-shared-video-ui-glitches

Fixes shared video thumbnail size and shared video on large background.
This commit is contained in:
damencho 2016-03-24 14:51:42 -05:00
commit 5112041e15
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();
});