|
@@ -13,6 +13,7 @@ var interfaceConfig = {
|
|
|
DESKTOP_SHARING_BUTTON_DISABLED_TOOLTIP: null,
|
|
|
INITIAL_TOOLBAR_TIMEOUT: 20000,
|
|
|
TOOLBAR_TIMEOUT: 4000,
|
|
|
+ TOOLBAR_ALWAYS_VISIBLE: false,
|
|
|
DEFAULT_REMOTE_DISPLAY_NAME: 'Fellow Jitster',
|
|
|
DEFAULT_LOCAL_DISPLAY_NAME: 'me',
|
|
|
SHOW_JITSI_WATERMARK: true,
|
|
@@ -37,16 +38,15 @@ var interfaceConfig = {
|
|
|
AUTHENTICATION_ENABLE: true,
|
|
|
|
|
|
|
|
|
- * the toolbar buttons line is intentionally left in one line, to be able
|
|
|
- * to easily override values or remove them using regex
|
|
|
+ * The name of the toolbar buttons to display in the toolbar. If present,
|
|
|
+ * the button will display. Exceptions are "livestreaming" and "recording"
|
|
|
+ * which also require being a moderator and some values in config.js to be
|
|
|
+ * enabled. Also, the "profile" button will not display for user's with a
|
|
|
+ * jwt.
|
|
|
*/
|
|
|
TOOLBAR_BUTTONS: [
|
|
|
-
|
|
|
-
|
|
|
'microphone', 'camera', 'desktop', 'fullscreen', 'fodeviceselection', 'hangup',
|
|
|
-
|
|
|
-
|
|
|
- 'profile', 'info', 'chat', 'recording', 'etherpad',
|
|
|
+ 'profile', 'info', 'chat', 'recording', 'livestreaming', 'etherpad',
|
|
|
'sharedvideo', 'settings', 'raisehand', 'videoquality', 'filmstrip',
|
|
|
'invite', 'feedback', 'stats', 'shortcuts'
|
|
|
],
|
|
@@ -148,7 +148,17 @@ var interfaceConfig = {
|
|
|
*
|
|
|
* @type {boolean}
|
|
|
*/
|
|
|
- VIDEO_QUALITY_LABEL_DISABLED: false
|
|
|
+ VIDEO_QUALITY_LABEL_DISABLED: false,
|
|
|
+
|
|
|
+
|
|
|
+ * Temporary feature flag to debug performance with the large video
|
|
|
+ * background blur. On initial implementation, blur was always enabled so a
|
|
|
+ * falsy value here will be used to keep blur enabled, as will the value
|
|
|
+ * "video", and will render the blur over a video element. The value
|
|
|
+ * "canvas" will display the blur over a canvas element, while the value
|
|
|
+ * "off" will prevent the background from rendering.
|
|
|
+ */
|
|
|
+ _BACKGROUND_BLUR: 'canvas'
|
|
|
|
|
|
|
|
|
* Specify custom URL for downloading android mobile app.
|