Your IP : 216.73.216.40


Current Path : /var/www/html/test/wetty/src/client/
Upload File :
Current File : /var/www/html/test/wetty/src/client/resize.ts

import { Terminal } from 'xterm';
import { fit } from 'xterm/lib/addons/fit/fit';
import { socket } from './socket';

export default function resize(term: Terminal): Function {
  return (): void => {
    fit(term);
    socket.emit('resize', { cols: term.cols, rows: term.rows });
  };
}