您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

constants.js 782B

1234567891011121314151617181920212223
  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. 'microphone', 'camera', 'closedcaptions', 'desktop', 'embedmeeting', 'fullscreen',
  17. 'fodeviceselection', 'hangup', 'profile', 'chat', 'recording',
  18. 'livestreaming', 'etherpad', 'sharedvideo', 'settings', 'raisehand',
  19. 'videoquality', 'filmstrip', 'invite', 'feedback', 'stats', 'shortcuts',
  20. 'tileview', 'select-background', 'download', 'help', 'mute-everyone', 'mute-video-everyone',
  21. 'security', 'toggle-camera'
  22. ];