Merge pull request #649 from jitsi/flip_flag

Adds config option for enabling the flip menu for the local video
pull/541/head
yanas 9 years ago
commit 76017bcbe3
  1. 3
      modules/UI/videolayout/LocalVideo.js

@ -12,7 +12,8 @@ function LocalVideo(VideoLayout, emitter) {
this.container = $("#localVideoContainer").get(0);
this.localVideoId = null;
this.bindHoverHandler();
this._buildContextMenu();
if(config.enableLocalVideoFlip)
this._buildContextMenu();
this.isLocal = true;
this.emitter = emitter;
Object.defineProperty(this, 'id', {

Loading…
Cancel
Save