Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

constants.js 1.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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' ];
  56. /**
  57. * The set of feature flags.
  58. *
  59. * @enum {string}
  60. */
  61. export const FEATURE_FLAGS = {
  62. SOURCE_NAME_SIGNALING: 'sourceNameSignaling'
  63. };