|
@@ -148,7 +148,17 @@ var interfaceConfig = {
|
148
|
148
|
*
|
149
|
149
|
* @type {boolean}
|
150
|
150
|
*/
|
151
|
|
- VIDEO_QUALITY_LABEL_DISABLED: false
|
|
151
|
+ VIDEO_QUALITY_LABEL_DISABLED: false,
|
|
152
|
+
|
|
153
|
+ /**
|
|
154
|
+ * Temporary feature flag to debug performance with the large video
|
|
155
|
+ * background blur. On initial implementation, blur was always enabled so a
|
|
156
|
+ * falsy value here will be used to keep blur enabled, as will the value
|
|
157
|
+ * "video", and will render the blur over a video element. The value
|
|
158
|
+ * "canvas" will display the blur over a canvas element, while the value
|
|
159
|
+ * "off" will prevent the background from rendering.
|
|
160
|
+ */
|
|
161
|
+ _BACKGROUND_BLUR: 'canvas'
|
152
|
162
|
|
153
|
163
|
/**
|
154
|
164
|
* Specify custom URL for downloading android mobile app.
|
|
@@ -163,17 +173,7 @@ var interfaceConfig = {
|
163
|
173
|
/**
|
164
|
174
|
* Specify mobile app scheme for opening the app from the mobile browser.
|
165
|
175
|
*/
|
166
|
|
- // APP_SCHEME: 'org.jitsi.meet',
|
167
|
|
-
|
168
|
|
- /**
|
169
|
|
- * Temporary feature flag to debug performance with the large video
|
170
|
|
- * background blur. On initial implementation, blur was always enabled so a
|
171
|
|
- * falsy value here will be used to keep blur enabled, as will the value
|
172
|
|
- * "video", and will render the blur over a video element. The value
|
173
|
|
- * "canvas" will display the blur over a canvas element, while the value
|
174
|
|
- * "off" will prevent the background from rendering.
|
175
|
|
- */
|
176
|
|
- // _BACKGROUND_BLUR: undefined
|
|
176
|
+ // APP_SCHEME: 'org.jitsi.meet'
|
177
|
177
|
};
|
178
|
178
|
|
179
|
179
|
/* eslint-enable no-unused-vars, no-var, max-len */
|