mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2026-08-26 12:37:46 +00:00
Create Shortcuts tab in Settings Dialog Move keyboard shortcut option from More to this tab Move shortcuts info from KeyboardShortcuts dialog to this tab Remove KeyboardShortcuts dialog
20 lines
479 B
TypeScript
20 lines
479 B
TypeScript
export const SETTINGS_TABS = {
|
|
CALENDAR: 'calendar_tab',
|
|
DEVICES: 'devices_tab',
|
|
MORE: 'more_tab',
|
|
MODERATOR: 'moderator-tab',
|
|
NOTIFICATIONS: 'notifications_tab',
|
|
PROFILE: 'profile_tab',
|
|
SHORTCUTS: 'shortcuts_tab'
|
|
};
|
|
|
|
/**
|
|
* Default frame rate to be used for capturing screenshare.
|
|
*/
|
|
export const SS_DEFAULT_FRAME_RATE = 5;
|
|
|
|
/**
|
|
* Supported framerates to be used for capturing screenshare.
|
|
*/
|
|
export const SS_SUPPORTED_FRAMERATES = [ 5, 15, 30 ];
|