Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

constants.ts 1.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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. 'highlight',
  29. 'invite',
  30. 'linktosalesforce',
  31. 'livestreaming',
  32. 'microphone',
  33. 'mute-everyone',
  34. 'mute-video-everyone',
  35. 'participants-pane',
  36. 'profile',
  37. 'raisehand',
  38. 'recording',
  39. 'security',
  40. 'select-background',
  41. 'settings',
  42. 'shareaudio',
  43. 'noisesuppression',
  44. 'sharedvideo',
  45. 'shortcuts',
  46. 'stats',
  47. 'tileview',
  48. 'toggle-camera',
  49. 'videoquality',
  50. 'whiteboard'
  51. ];
  52. /**
  53. * The toolbar buttons to show on premeeting screens.
  54. */
  55. export const PREMEETING_BUTTONS = [ 'microphone', 'camera', 'select-background', 'invite', 'settings' ];
  56. /**
  57. * The toolbar buttons to show on 3rdParty prejoin screen.
  58. */
  59. export const THIRD_PARTY_PREJOIN_BUTTONS = [ 'microphone', 'camera', 'select-background' ];
  60. /**
  61. * The set of feature flags.
  62. *
  63. * @enum {string}
  64. */
  65. export const FEATURE_FLAGS = {
  66. SSRC_REWRITING: 'ssrcRewritingEnabled'
  67. };