Quellcode durchsuchen

fix typos - syntax errors in config.js example

* in the example code for config.js in INSTALL.md
  contains three key-value-pairs not present in the example file
  'config.js.example' - these were appended without inserting a comma
  and the last two of these were commented out without removing
  the trailing comma - the example file 'config.js.example' is correct
  but using the INSTALL.md version causes the page render to halt prematurely
  making login impossible
master
bill auger vor 11 Jahren
Ursprung
Commit
55d4cfb66d
1 geänderte Dateien mit 2 neuen und 2 gelöschten Zeilen
  1. 2
    2
      INSTALL.md

+ 2
- 2
INSTALL.md Datei anzeigen

@@ -154,8 +154,8 @@ var config = {
154 154
         bridge: 'jitsi-videobridge.jitsi.example.com'
155 155
     },
156 156
     useNicks: false,
157
-    bosh: '//jitsi.example.com/http-bind' // FIXME: use xep-0156 for that
158
-    desktopSharing: 'false', // Desktop sharing method. Can be set to 'ext', 'webrtc' or false to disable.
157
+    bosh: '//jitsi.example.com/http-bind', // FIXME: use xep-0156 for that
158
+    desktopSharing: 'false' // Desktop sharing method. Can be set to 'ext', 'webrtc' or false to disable.
159 159
     //chromeExtensionId: 'diibjkoicjeejcmhdnailmkgecihlobk', // Id of desktop streamer Chrome extension
160 160
     //minChromeExtVersion: '0.1' // Required version of Chrome extension
161 161
 };

Laden…
Abbrechen
Speichern