Minor fixes for jitsi-meet-new

* use proper context for the function
* remove duplicate line
pull/471/head
isymchych 9 years ago
parent a0becb918e
commit bc2afd7d64
  1. 1
      modules/UI/videolayout/LargeVideo.js
  2. 2
      modules/UI/videolayout/VideoLayout.js

@ -165,7 +165,6 @@ class VideoContainer extends LargeContainer {
get id () {
return getStreamOwnerId(this.stream);
return getStreamId(this.stream);
}
constructor (onPlay) {

@ -633,7 +633,7 @@ var VideoLayout = {
var updateLargeVideo = false;
// Handle LastN/local LastN changes.
BottomToolbar.getThumbs().each(function( index, element ) {
BottomToolbar.getThumbs().each(( index, element ) => {
var resourceJid = getPeerContainerResourceId(element);
// We do not want to process any logic for our own(local) video

Loading…
Cancel
Save