Invalid JSON - Missing Comma
Was missing the ending comma on the wsConnect line. This just adds it.
This commit is contained in:
parent
695e84e16f
commit
78feb26958
|
@ -64,7 +64,7 @@ webserver, and unpack it to a temporary directory.
|
||||||
````javascript
|
````javascript
|
||||||
var vtxdata = {
|
var vtxdata = {
|
||||||
sysName: "Your Awesome BBS",
|
sysName: "Your Awesome BBS",
|
||||||
wsConnect: "wss://your-hostname.here:8811"
|
wsConnect: "wss://your-hostname.here:8811",
|
||||||
term: "ansi-bbs",
|
term: "ansi-bbs",
|
||||||
codePage: "CP437",
|
codePage: "CP437",
|
||||||
fontName: "UVGA16",
|
fontName: "UVGA16",
|
||||||
|
@ -88,4 +88,4 @@ otherwise.
|
||||||
9. If you navigate to http://your-hostname.here/vtx.html, you should see a splash screen like the following:
|
9. If you navigate to http://your-hostname.here/vtx.html, you should see a splash screen like the following:
|
||||||
![VTXClient](../assets/images/vtxclient.png "VTXClient")
|
![VTXClient](../assets/images/vtxclient.png "VTXClient")
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue