Removes an unused variable.
This commit is contained in:
parent
fd404b8465
commit
cc20a4d776
|
@ -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);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue