Skip to content

Commit

Permalink
Fix VTXClient Documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
crhultay authored Nov 23, 2024
1 parent dd30631 commit 626e16e
Showing 1 changed file with 18 additions and 16 deletions.
34 changes: 18 additions & 16 deletions docs/_docs/servers/loginservers/websocket.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,22 +78,24 @@ webserver, and unpack it to a temporary directory.
````javascript
var vtxdata = {
sysName: "Your Awesome BBS",
wsConnect: "wss://your-hostname.here:8811",
term: "ansi-bbs",
codePage: "CP437",
fontName: "UVGA16",
fontSize: "24px",
crtCols: 80,
crtRows: 25,
crtHistory: 500,
xScale: 1,
initStr: "",
defPageAttr: 0x1010,
defCrsrAttr: ['thick', 'horizontal'],
defCellAttr: 0x0007,
telnet: 1,
autoConnect: 0
sysName: "Your Awesome BBS",
wsConnect: "wss://your-hostname.here:8811",
term: "ansi-bbs",
codePage: "CP437",
fontName: "UVGA16",
fontSize: "24px",
crtCols: 80,
crtRows: 25,
crtHistory: 500,
xScale: 1,
initStr: "",
defPageAttr: 0x1010,
defCrsrAttr: ['thick', 'horizontal'],
defCellAttr: 0x0007,
telnet: 1,
autoConnect: 0,
wsProtocol: 'telnet',
wsDataType: 'arraybuffer',
};
````
Expand Down

0 comments on commit 626e16e

Please sign in to comment.