|
|
@@ -13,7 +13,6 @@ function LocalVideo(VideoLayout, emitter) {
|
|
13
|
13
|
this.videoSpanId = "localVideoContainer";
|
|
14
|
14
|
this.container = $("#localVideoContainer").get(0);
|
|
15
|
15
|
this.bindHoverHandler();
|
|
16
|
|
- this.VideoLayout = VideoLayout;
|
|
17
|
16
|
this.flipX = true;
|
|
18
|
17
|
this.isLocal = true;
|
|
19
|
18
|
this.emitter = emitter;
|
|
|
@@ -22,7 +21,7 @@ function LocalVideo(VideoLayout, emitter) {
|
|
22
|
21
|
return APP.conference.localId;
|
|
23
|
22
|
}
|
|
24
|
23
|
});
|
|
25
|
|
- SmallVideo.call(this);
|
|
|
24
|
+ SmallVideo.call(this, VideoLayout);
|
|
26
|
25
|
}
|
|
27
|
26
|
|
|
28
|
27
|
LocalVideo.prototype = Object.create(SmallVideo.prototype);
|