returned to default

This commit is contained in:
ACoolName 2024-05-28 00:04:25 +03:00
parent d7d0affdec
commit edf6cfa453

View File

@ -52,11 +52,11 @@ function TerminalComponent (p: {websocket: string|null}) {
} }
socket.addEventListener('open', () => { socket.addEventListener('open', () => {
// socket.send(JSON.stringify({CommandType: 'resize', Arguments: [terminal.current?.rows, terminal.current?.cols]})); socket.send(JSON.stringify({CommandType: 'resize', Arguments: [terminal.current?.rows, terminal.current?.cols]}));
}); });
terminal.current.onResize(({cols, rows})=>{ terminal.current.onResize(({cols, rows})=>{
socket.send(JSON.stringify({CommandType: 'resize', Arguments: [String(rows)+String(cols)]})); socket.send(JSON.stringify({CommandType: 'resize', Arguments: [rows, cols]}));
}) })
socket.addEventListener('message', (event) => { socket.addEventListener('message', (event) => {