Fixes issue with avatar not being centered.

pull/444/head
yanas 10 years ago
parent bbb144f1bd
commit d6a1192a0f
  1. 3
      modules/UI/videolayout/LargeVideo.js

@ -203,7 +203,8 @@ class VideoContainer extends LargeContainer {
let { horizontalIndent, verticalIndent } = this.getVideoPosition(width, height, containerWidth, containerHeight);
// update avatar position
let top = this.containerHeight / 2 - avatarSize / 4 * 3;
let top = containerHeight / 2 - avatarSize / 4 * 3;
this.$avatar.css('top', top);
this.$wrapper.animate({

Loading…
Cancel
Save