Skip to content

Commit

Permalink
Merge pull request #577 from crhultay/patch-4
Browse files Browse the repository at this point in the history
Fix VTXClient Documentation
  • Loading branch information
NuSkooler authored Nov 23, 2024
2 parents dd30631 + 626e16e commit c474115
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 c474115

Please sign in to comment.