Adds config option for enabling the flip menu for the local video
This commit is contained in:
parent
3df47f0d72
commit
1eb915d312
|
@ -12,7 +12,8 @@ function LocalVideo(VideoLayout, emitter) {
|
||||||
this.container = $("#localVideoContainer").get(0);
|
this.container = $("#localVideoContainer").get(0);
|
||||||
this.localVideoId = null;
|
this.localVideoId = null;
|
||||||
this.bindHoverHandler();
|
this.bindHoverHandler();
|
||||||
this._buildContextMenu();
|
if(config.enableLocalVideoFlip)
|
||||||
|
this._buildContextMenu();
|
||||||
this.isLocal = true;
|
this.isLocal = true;
|
||||||
this.emitter = emitter;
|
this.emitter = emitter;
|
||||||
Object.defineProperty(this, 'id', {
|
Object.defineProperty(this, 'id', {
|
||||||
|
|
Loading…
Reference in New Issue