Skip to content

Commit

Permalink
Fix Jitsi Meet getting wedged on startup in Chrome and Safari
Browse files Browse the repository at this point in the history
  • Loading branch information
robintown committed Apr 14, 2022
1 parent 95213b1 commit 9f77b8c
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion res/css/structures/_VideoRoomView.scss
Expand Up @@ -36,6 +36,14 @@ limitations under the License.

// While the lobby is shown, the widget needs to stay loaded but hidden in the background
.mx_VideoLobby ~ .mx_AppTile {
display: none;
// You'd think this could just be a display: none or visibility: hidden,
// but for some reason that causes Jitsi Meet to get wedged on startup
// in Chrome and Safari, so we instead make it nearly dimensionless and
// push it way out of sight
min-width: 0;
width: 1px;
height: 1px;
position: fixed;
top: -100px;
}
}

0 comments on commit 9f77b8c

Please sign in to comment.