mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2025-12-30 11:22:31 +00:00
Fixes screensharing selection issues. Now when there’s a screen share we just use the old VERTICAL_FILMSTRIP_VIEW layout Add THUMBAIL_TYPE to determine how to display thumbnails
12 lines
331 B
JavaScript
12 lines
331 B
JavaScript
/**
|
|
* An enumeration of the different display layouts supported by the application.
|
|
*
|
|
* @type {Object}
|
|
*/
|
|
export const LAYOUTS = {
|
|
HORIZONTAL_FILMSTRIP_VIEW: 'horizontal-filmstrip-view',
|
|
TILE_VIEW: 'tile-view',
|
|
VERTICAL_FILMSTRIP_VIEW: 'vertical-filmstrip-view',
|
|
STAGE_FILMSTRIP_VIEW: 'stage-filmstrip-view'
|
|
};
|