You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

constants.js 471B

123456789101112131415161718192021
  1. export const SETTINGS_TABS = {
  2. CALENDAR: 'calendar_tab',
  3. DEVICES: 'devices_tab',
  4. MORE: 'more_tab',
  5. PROFILE: 'profile_tab'
  6. };
  7. /**
  8. * View ID for the Settings modal.
  9. */
  10. export const SETTINGS_VIEW_ID = 'SETTINGS_VIEW_ID';
  11. /**
  12. * Default frame rate to be used for capturing screenshare.
  13. */
  14. export const SS_DEFAULT_FRAME_RATE = 5;
  15. /**
  16. * Supported framerates to be used for capturing screenshare.
  17. */
  18. export const SS_SUPPORTED_FRAMERATES = [ 5, 15, 30 ];