Removes an unused variable.

This commit is contained in:
Boris Grozev 2015-08-10 13:02:39 -05:00
parent fd404b8465
commit cc20a4d776
1 changed files with 2 additions and 6 deletions

View File

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