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 1.2KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. /**
  2. * The prefix of the {@code localStorage} key into which {@link storeConfig}
  3. * stores and from which {@link restoreConfig} restores.
  4. *
  5. * @protected
  6. * @type string
  7. */
  8. export const _CONFIG_STORE_PREFIX = 'config.js';
  9. /**
  10. * The list of all possible UI buttons.
  11. *
  12. * @protected
  13. * @type Array<string>
  14. */
  15. export const TOOLBAR_BUTTONS = [
  16. 'camera',
  17. 'chat',
  18. 'closedcaptions',
  19. 'desktop',
  20. 'download',
  21. 'embedmeeting',
  22. 'etherpad',
  23. 'feedback',
  24. 'filmstrip',
  25. 'fullscreen',
  26. 'hangup',
  27. 'help',
  28. 'invite',
  29. 'livestreaming',
  30. 'microphone',
  31. 'mute-everyone',
  32. 'mute-video-everyone',
  33. 'participants-pane',
  34. 'profile',
  35. 'raisehand',
  36. 'recording',
  37. 'security',
  38. 'select-background',
  39. 'settings',
  40. 'shareaudio',
  41. 'sharedvideo',
  42. 'shortcuts',
  43. 'stats',
  44. 'tileview',
  45. 'toggle-camera',
  46. 'videoquality'
  47. ];
  48. /**
  49. * The toolbar buttons to show on premeeting screens.
  50. */
  51. export const PREMEETING_BUTTONS = [ 'microphone', 'camera', 'select-background', 'invite', 'settings' ];
  52. /**
  53. * The toolbar buttons to show on 3rdParty prejoin screen.
  54. */
  55. export const THIRD_PARTY_PREJOIN_BUTTONS = [ 'microphone', 'camera', 'select-background' ];