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.2KB

1234567891011121314151617181920212223242526272829303132
  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_DOMINANT_SPEAKER_DISPLAY_NAME: "speaker",
  9. DEFAULT_LOCAL_DISPLAY_NAME: "me",
  10. SHOW_JITSI_WATERMARK: true,
  11. JITSI_WATERMARK_LINK: "https://jitsi.org",
  12. SHOW_BRAND_WATERMARK: false,
  13. BRAND_WATERMARK_LINK: "",
  14. SHOW_POWERED_BY: false,
  15. GENERATE_ROOMNAMES_ON_WELCOME_PAGE: true,
  16. APP_NAME: "Jitsi Meet",
  17. INVITATION_POWERED_BY: true,
  18. ACTIVE_SPEAKER_AVATAR_SIZE: 100,
  19. TOOLBAR_BUTTONS: ['authentication', 'microphone', 'camera', 'desktop',
  20. 'recording', 'security', 'invite', 'chat', 'prezi', 'etherpad',
  21. 'fullscreen', 'sip', 'dialpad', 'settings', 'hangup', 'filmstrip',
  22. 'contacts'],
  23. // Determines how the video would fit the screen. 'both' would fit the whole
  24. // screen, 'height' would fit the original video height to the height of the
  25. // screen, 'width' would fit the original video width to the width of the
  26. // screen respecting ratio.
  27. VIDEO_LAYOUT_FIT: 'both',
  28. /**
  29. * Whether to only show the filmstrip (and hide the toolbar).
  30. */
  31. filmStripOnly: false
  32. };