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

12345678910111213141516171819202122232425262728293031323334353637
  1. var interfaceConfig = {
  2. CANVAS_EXTRA: 104,
  3. CANVAS_RADIUS: 0,
  4. SHADOW_COLOR: '#ffffff',
  5. // TO FIX: this needs to be handled from SASS variables. There are some
  6. // methods allowing to use variables both in css and js.
  7. DEFAULT_BACKGROUND: '#474747',
  8. INITIAL_TOOLBAR_TIMEOUT: 20000,
  9. TOOLBAR_TIMEOUT: 4000,
  10. DEFAULT_REMOTE_DISPLAY_NAME: "Fellow Jitster",
  11. DEFAULT_LOCAL_DISPLAY_NAME: "me",
  12. SHOW_JITSI_WATERMARK: true,
  13. JITSI_WATERMARK_LINK: "https://jitsi.org",
  14. SHOW_BRAND_WATERMARK: false,
  15. BRAND_WATERMARK_LINK: "",
  16. SHOW_POWERED_BY: false,
  17. GENERATE_ROOMNAMES_ON_WELCOME_PAGE: true,
  18. APP_NAME: "Jitsi Meet",
  19. INVITATION_POWERED_BY: true,
  20. // the toolbar buttons line is intentionally left in one line, to be able
  21. // to easily override values or remove them using regex
  22. MAIN_TOOLBAR_BUTTONS: ['microphone', 'camera', 'desktop', 'invite', 'hangup'], // jshint ignore:line
  23. TOOLBAR_BUTTONS: ['profile', 'authentication', 'microphone', 'camera', 'desktop', 'recording', 'security', 'invite', 'chat', 'etherpad', 'sharedvideo', 'fullscreen', 'sip', 'dialpad', 'settings', 'hangup', 'filmstrip', 'contacts'], // jshint ignore:line
  24. SETTINGS_SECTIONS: ['language', 'devices', 'moderator'],
  25. // Determines how the video would fit the screen. 'both' would fit the whole
  26. // screen, 'height' would fit the original video height to the height of the
  27. // screen, 'width' would fit the original video width to the width of the
  28. // screen respecting ratio.
  29. VIDEO_LAYOUT_FIT: 'both',
  30. /**
  31. * Whether to only show the filmstrip (and hide the toolbar).
  32. */
  33. filmStripOnly: false,
  34. RANDOM_AVATAR_URL_PREFIX: false,
  35. RANDOM_AVATAR_URL_SUFFIX: false,
  36. FILM_STRIP_MAX_HEIGHT: 120
  37. };