|
@@ -65,7 +65,7 @@ const FilmStrip = {
|
65
|
65
|
- parseInt(this.filmStrip.css('paddingLeft'), 10)
|
66
|
66
|
- parseInt(this.filmStrip.css('paddingRight'), 10)
|
67
|
67
|
- parseInt(this.filmStrip.css('borderLeftWidth'), 10)
|
68
|
|
- - parseInt(this.filmStrip.css('borderRightWidth'), 10);
|
|
68
|
+ - parseInt(this.filmStrip.css('borderRightWidth'), 10) - 5;
|
69
|
69
|
|
70
|
70
|
let availableWidth = Math.floor(
|
71
|
71
|
(videoAreaAvailableWidth - numvids * (
|
|
@@ -75,13 +75,13 @@ const FilmStrip = {
|
75
|
75
|
+ parseInt(localVideoContainer.css('paddingRight'), 10)
|
76
|
76
|
+ parseInt(localVideoContainer.css('marginLeft'), 10)
|
77
|
77
|
+ parseInt(localVideoContainer.css('marginRight'), 10)))
|
78
|
|
- / numvids) - 20;
|
|
78
|
+ / numvids);
|
79
|
79
|
|
80
|
80
|
let maxHeight
|
81
|
81
|
// If the MAX_HEIGHT property hasn't been specified
|
82
|
82
|
// we have the static value.
|
83
|
83
|
= Math.min( interfaceConfig.FILM_STRIP_MAX_HEIGHT || 160,
|
84
|
|
- availableHeight);
|
|
84
|
+ availableHeight);
|
85
|
85
|
|
86
|
86
|
availableHeight
|
87
|
87
|
= Math.min( maxHeight,
|