Browse Source

Removes an unused variable.

master
Boris Grozev 10 years ago
parent
commit
cc20a4d776
1 changed files with 2 additions and 6 deletions
  1. 2
    6
      modules/UI/videolayout/VideoLayout.js

+ 2
- 6
modules/UI/videolayout/VideoLayout.js View File

@@ -36,13 +36,9 @@ var VideoLayout = (function (my) {
36 36
     my.init = function (emitter) {
37 37
         eventEmitter = emitter;
38 38
         localVideoThumbnail = new LocalVideo(VideoLayout);
39
-        if (interfaceConfig.filmStripOnly)
40
-        {
41
-            showLargeVideo = false;
39
+        if (interfaceConfig.filmStripOnly) {
42 40
             LargeVideo.disable();
43
-        }
44
-        else
45
-        {
41
+        } else {
46 42
             LargeVideo.init(VideoLayout, emitter);
47 43
         }
48 44
 

Loading…
Cancel
Save