Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

interface_config.js 2.6KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. var interfaceConfig = { // eslint-disable-line no-unused-vars
  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', 'fullscreen', 'hangup'], // jshint ignore:line
  23. /**
  24. * The index of the splitter button in the main toolbar. The splitter
  25. * button is a button in the toolbar that will be applied a special styling
  26. * visually dividing the toolbar buttons.
  27. */
  28. //MAIN_TOOLBAR_SPLITTER_INDEX: -1,
  29. TOOLBAR_BUTTONS: ['profile', 'authentication', 'microphone', 'camera', 'desktop', 'recording', 'security', 'raisehand', 'chat', 'etherpad', 'sharedvideo', 'sip', 'dialpad', 'settings', 'hangup', 'filmstrip', 'contacts'], // jshint ignore:line
  30. SETTINGS_SECTIONS: ['language', 'devices', 'moderator'],
  31. // Determines how the video would fit the screen. 'both' would fit the whole
  32. // screen, 'height' would fit the original video height to the height of the
  33. // screen, 'width' would fit the original video width to the width of the
  34. // screen respecting ratio.
  35. VIDEO_LAYOUT_FIT: 'both',
  36. SHOW_CONTACTLIST_AVATARS: false,
  37. /**
  38. * Whether to only show the filmstrip (and hide the toolbar).
  39. */
  40. filmStripOnly: false,
  41. RANDOM_AVATAR_URL_PREFIX: false,
  42. RANDOM_AVATAR_URL_SUFFIX: false,
  43. FILM_STRIP_MAX_HEIGHT: 120,
  44. LOCAL_THUMBNAIL_RATIO_WIDTH: 16,
  45. LOCAL_THUMBNAIL_RATIO_HEIGHT: 9,
  46. REMOTE_THUMBNAIL_RATIO_WIDTH: 1,
  47. REMOTE_THUMBNAIL_RATIO_HEIGHT: 1,
  48. // Enables feedback star animation.
  49. ENABLE_FEEDBACK_ANIMATION: false,
  50. DISABLE_FOCUS_INDICATOR: false,
  51. DISABLE_DOMINANT_SPEAKER_INDICATOR: false,
  52. // disables the ringing sound when the RingOverlay is shown.
  53. DISABLE_RINGING: false,
  54. AUDIO_LEVEL_PRIMARY_COLOR: "rgba(255,255,255,0.7)",
  55. AUDIO_LEVEL_SECONDARY_COLOR: "rgba(255,255,255,0.4)"
  56. };