Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

interface_config.js 1.4KB

1234567891011121314151617181920212223242526272829303132
  1. var interfaceConfig = {
  2. CANVAS_EXTRA: 104,
  3. CANVAS_RADIUS: 0,
  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. // the toolbar buttons line is intentionally left in one line, to be able
  18. // to easily override values or remove them using regex
  19. TOOLBAR_BUTTONS: ['authentication', 'microphone', 'camera', 'desktop', 'recording', 'security', 'invite', 'chat', 'etherpad', 'sharedvideo', 'fullscreen', 'sip', 'dialpad', 'settings', 'hangup', 'filmstrip', 'contacts'], // jshint ignore:line
  20. // Determines how the video would fit the screen. 'both' would fit the whole
  21. // screen, 'height' would fit the original video height to the height of the
  22. // screen, 'width' would fit the original video width to the width of the
  23. // screen respecting ratio.
  24. VIDEO_LAYOUT_FIT: 'both',
  25. /**
  26. * Whether to only show the filmstrip (and hide the toolbar).
  27. */
  28. filmStripOnly: false,
  29. RANDOM_AVATAR_URL_PREFIX: false,
  30. RANDOM_AVATAR_URL_SUFFIX: false,
  31. FILM_STRIP_MAX_HEIGHT: 120
  32. };