Browse Source

feat(ScreenSharing): use sane defaults

Both Chrome and Firefox can work without extensions now, so it no longer makes
sense to default to disabling it in Chrome. Moreover, rely on the fact that
undefined is falsey so no actual config needs to be provided.
master
Saúl Ibarra Corretgé 6 years ago
parent
commit
87f171caa4
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      config.js

+ 2
- 2
config.js View File

@@ -146,7 +146,7 @@ var config = {
146 146
     desktopSharingChromeExtId: null,
147 147
 
148 148
     // Whether desktop sharing should be disabled on Chrome.
149
-    desktopSharingChromeDisabled: true,
149
+    // desktopSharingChromeDisabled: false,
150 150
 
151 151
     // The media sources to use when using screen sharing with the Chrome
152 152
     // extension.
@@ -156,7 +156,7 @@ var config = {
156 156
     desktopSharingChromeMinExtVersion: '0.1',
157 157
 
158 158
     // Whether desktop sharing should be disabled on Firefox.
159
-    desktopSharingFirefoxDisabled: false,
159
+    // desktopSharingFirefoxDisabled: false,
160 160
 
161 161
     // Optional desktop sharing frame rate options. Default value: min:5, max:5.
162 162
     // desktopSharingFrameRate: {

Loading…
Cancel
Save