Browse Source

interface_config: bring back config trailer

master
Saúl Ibarra Corretgé 5 years ago
parent
commit
16f1c167b8
1 changed files with 8 additions and 1 deletions
  1. 8
    1
      interface_config.js

+ 8
- 1
interface_config.js View File

@@ -209,7 +209,7 @@ var interfaceConfig = {
209 209
      *
210 210
      * @type {boolean}
211 211
      */
212
-    VIDEO_QUALITY_LABEL_DISABLED: false
212
+    VIDEO_QUALITY_LABEL_DISABLED: false,
213 213
 
214 214
     /**
215 215
      * When enabled, the kick participant button will not be presented for users without a JWT
@@ -265,6 +265,13 @@ var interfaceConfig = {
265 265
      INDICATOR_FONT_SIZES
266 266
      PHONE_NUMBER_REGEX
267 267
     */
268
+
269
+    // Allow all above example options to include a trailing comma and
270
+    // prevent fear when commenting out the last value.
271
+    // eslint-disable-next-line sort-keys
272
+    makeJsonParserHappy: 'even if last key had a trailing comma'
273
+
274
+    // No configuration value should follow this line.
268 275
 };
269 276
 
270 277
 /* eslint-enable no-unused-vars, no-var, max-len */

Loading…
Cancel
Save