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.

interface_config.js 1.3KB

123456789101112131415161718192021222324252627282930313233
  1. var interfaceConfig = {
  2. CANVAS_EXTRA: 104,
  3. CANVAS_RADIUS: 7,
  4. SHADOW_COLOR: '#ffffff',
  5. INITIAL_TOOLBAR_TIMEOUT: 20000,
  6. TOOLBAR_TIMEOUT: 4000,
  7. DEFAULT_REMOTE_DISPLAY_NAME: "Fellow Jitster",
  8. DEFAULT_LOCAL_DISPLAY_NAME: "me",
  9. SHOW_JITSI_WATERMARK: true,
  10. JITSI_WATERMARK_LINK: "https://jitsi.org",
  11. SHOW_BRAND_WATERMARK: false,
  12. BRAND_WATERMARK_LINK: "",
  13. SHOW_POWERED_BY: false,
  14. GENERATE_ROOMNAMES_ON_WELCOME_PAGE: true,
  15. APP_NAME: "Jitsi Meet",
  16. INVITATION_POWERED_BY: true,
  17. ACTIVE_SPEAKER_AVATAR_SIZE: 100,
  18. TOOLBAR_BUTTONS: ['authentication', 'microphone', 'camera', 'desktop',
  19. 'recording', 'security', 'invite', 'chat', 'prezi', 'etherpad',
  20. 'fullscreen', 'sip', 'dialpad', 'settings', 'hangup', 'filmstrip',
  21. 'contacts'],
  22. // Determines how the video would fit the screen. 'both' would fit the whole
  23. // screen, 'height' would fit the original video height to the height of the
  24. // screen, 'width' would fit the original video width to the width of the
  25. // screen respecting ratio.
  26. VIDEO_LAYOUT_FIT: 'both',
  27. /**
  28. * Whether to only show the filmstrip (and hide the toolbar).
  29. */
  30. filmStripOnly: false,
  31. RANDOM_AVATAR_URL_PREFIX: false,
  32. RANDOM_AVATAR_URL_SUFFIX: false
  33. };