2016-10-03 16:12:04 +00:00
|
|
|
var interfaceConfig = { // eslint-disable-line no-unused-vars
|
2014-09-18 12:39:40 +00:00
|
|
|
CANVAS_EXTRA: 104,
|
2016-03-03 23:38:40 +00:00
|
|
|
CANVAS_RADIUS: 0,
|
2014-10-10 11:08:50 +00:00
|
|
|
SHADOW_COLOR: '#ffffff',
|
2016-09-13 04:10:18 +00:00
|
|
|
// TO FIX: this needs to be handled from SASS variables. There are some
|
|
|
|
// methods allowing to use variables both in css and js.
|
|
|
|
DEFAULT_BACKGROUND: '#474747',
|
2014-09-18 12:39:40 +00:00
|
|
|
INITIAL_TOOLBAR_TIMEOUT: 20000,
|
|
|
|
TOOLBAR_TIMEOUT: 4000,
|
|
|
|
DEFAULT_REMOTE_DISPLAY_NAME: "Fellow Jitster",
|
2014-10-31 11:47:12 +00:00
|
|
|
DEFAULT_LOCAL_DISPLAY_NAME: "me",
|
2014-09-24 14:44:52 +00:00
|
|
|
SHOW_JITSI_WATERMARK: true,
|
2015-03-24 09:36:27 +00:00
|
|
|
JITSI_WATERMARK_LINK: "https://jitsi.org",
|
2014-09-24 14:44:52 +00:00
|
|
|
SHOW_BRAND_WATERMARK: false,
|
|
|
|
BRAND_WATERMARK_LINK: "",
|
2014-10-01 19:21:57 +00:00
|
|
|
SHOW_POWERED_BY: false,
|
2014-11-04 14:14:02 +00:00
|
|
|
GENERATE_ROOMNAMES_ON_WELCOME_PAGE: true,
|
2014-10-31 11:47:12 +00:00
|
|
|
APP_NAME: "Jitsi Meet",
|
2014-12-17 12:45:04 +00:00
|
|
|
INVITATION_POWERED_BY: true,
|
2016-10-12 12:33:07 +00:00
|
|
|
/**
|
|
|
|
* If we should show authentication block in profile
|
|
|
|
*/
|
|
|
|
AUTHENTICATION_ENABLE: true,
|
2016-08-01 21:57:56 +00:00
|
|
|
// the toolbar buttons line is intentionally left in one line, to be able
|
|
|
|
// to easily override values or remove them using regex
|
2016-10-13 20:09:52 +00:00
|
|
|
MAIN_TOOLBAR_BUTTONS: ['microphone', 'camera', 'desktop', 'invite', 'fullscreen', 'hangup'], // jshint ignore:line
|
2016-10-17 20:59:35 +00:00
|
|
|
/**
|
|
|
|
* The index of the splitter button in the main toolbar. The splitter
|
|
|
|
* button is a button in the toolbar that will be applied a special styling
|
|
|
|
* visually dividing the toolbar buttons.
|
|
|
|
*/
|
|
|
|
//MAIN_TOOLBAR_SPLITTER_INDEX: -1,
|
2016-10-13 20:09:52 +00:00
|
|
|
TOOLBAR_BUTTONS: ['profile', 'authentication', 'microphone', 'camera', 'desktop', 'recording', 'security', 'raisehand', 'chat', 'etherpad', 'sharedvideo', 'sip', 'dialpad', 'settings', 'hangup', 'filmstrip', 'contacts'], // jshint ignore:line
|
2016-09-13 22:37:09 +00:00
|
|
|
SETTINGS_SECTIONS: ['language', 'devices', 'moderator'],
|
2015-10-06 20:02:46 +00:00
|
|
|
// Determines how the video would fit the screen. 'both' would fit the whole
|
|
|
|
// screen, 'height' would fit the original video height to the height of the
|
|
|
|
// screen, 'width' would fit the original video width to the width of the
|
|
|
|
// screen respecting ratio.
|
|
|
|
VIDEO_LAYOUT_FIT: 'both',
|
2016-09-13 22:14:05 +00:00
|
|
|
SHOW_CONTACTLIST_AVATARS: false,
|
2015-08-10 17:59:12 +00:00
|
|
|
/**
|
|
|
|
* Whether to only show the filmstrip (and hide the toolbar).
|
|
|
|
*/
|
2016-01-19 23:10:44 +00:00
|
|
|
filmStripOnly: false,
|
2016-03-15 20:28:57 +00:00
|
|
|
RANDOM_AVATAR_URL_PREFIX: false,
|
|
|
|
RANDOM_AVATAR_URL_SUFFIX: false,
|
2016-09-15 02:20:54 +00:00
|
|
|
FILM_STRIP_MAX_HEIGHT: 120,
|
|
|
|
LOCAL_THUMBNAIL_RATIO_WIDTH: 16,
|
|
|
|
LOCAL_THUMBNAIL_RATIO_HEIGHT: 9,
|
|
|
|
REMOTE_THUMBNAIL_RATIO_WIDTH: 1,
|
2016-09-20 04:25:03 +00:00
|
|
|
REMOTE_THUMBNAIL_RATIO_HEIGHT: 1,
|
|
|
|
// Enables feedback star animation.
|
2016-09-22 09:52:53 +00:00
|
|
|
ENABLE_FEEDBACK_ANIMATION: false,
|
2016-09-28 21:31:40 +00:00
|
|
|
DISABLE_FOCUS_INDICATOR: false,
|
2016-10-10 22:03:28 +00:00
|
|
|
DISABLE_DOMINANT_SPEAKER_INDICATOR: false,
|
2016-10-11 00:07:47 +00:00
|
|
|
// disables the ringing sound when the RingOverlay is shown.
|
|
|
|
DISABLE_RINGING: false,
|
2016-09-28 21:31:40 +00:00
|
|
|
AUDIO_LEVEL_PRIMARY_COLOR: "rgba(255,255,255,0.7)",
|
|
|
|
AUDIO_LEVEL_SECONDARY_COLOR: "rgba(255,255,255,0.4)"
|
2016-10-03 16:12:04 +00:00
|
|
|
};
|