Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Register
Sign in
Toggle navigation
Menu
gencay tekin
jitsi-meet
Commits
550c730e
Commit
550c730e
authored
2 years ago
by
Hristo Terezov
Committed by
Saúl Ibarra Corretgé
2 years ago
Browse files
Options
Downloads
Patches
Plain Diff
fix(tile-view):Recalculate on window height change
parent
2ac21389
Branches
Branches containing commit
Tags
6119
jitsi-meet_7247
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
react/features/filmstrip/subscriber.web.js
+7
-2
react/features/filmstrip/subscriber.web.js
with
7 additions
and
2 deletions
react/features/filmstrip/subscriber.web.js
+
7
−
2
View file @
550c730e
...
...
@@ -61,8 +61,13 @@ StateListenerRegistry.register(
*/
StateListenerRegistry
.
register
(
/* selector */
state
=>
{
return
{
layout
:
getCurrentLayout
(
state
),
width
:
state
[
'
features/base/responsive-ui
'
].
clientWidth
};
const
{
clientHeight
,
clientWidth
}
=
state
[
'
features/base/responsive-ui
'
];
return
{
layout
:
getCurrentLayout
(
state
),
height
:
clientHeight
,
width
:
clientWidth
};
},
/* listener */
({
layout
},
store
)
=>
{
switch
(
layout
)
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Topics
Snippets