Removes an unused variable.

pull/334/merge
Boris Grozev 10 years ago
parent fd404b8465
commit cc20a4d776
  1. 8
      modules/UI/videolayout/VideoLayout.js

@ -36,13 +36,9 @@ var VideoLayout = (function (my) {
my.init = function (emitter) {
eventEmitter = emitter;
localVideoThumbnail = new LocalVideo(VideoLayout);
if (interfaceConfig.filmStripOnly)
{
showLargeVideo = false;
if (interfaceConfig.filmStripOnly) {
LargeVideo.disable();
}
else
{
} else {
LargeVideo.init(VideoLayout, emitter);
}

Loading…
Cancel
Save