1
0
Fork 0
mirror of https://github.com/Ylianst/MeshCentral.git synced 2025-02-12 11:01:52 +00:00

fix player for windows and terminal #6761

Signed-off-by: si458 <simonsmith5521@gmail.com>
This commit is contained in:
si458 2025-02-11 17:04:19 +00:00
parent 9fd40751b2
commit 0b376fe5a0

View file

@ -1097,7 +1097,6 @@
if (term != null) { term.dispose(); } if (term != null) { term.dispose(); }
term = new Terminal(); term = new Terminal();
term.open(Q('XTermParent')); term.open(Q('XTermParent'));
term.onData(function (data) { if (tunnel != null) { tunnel.sendText(data); } })
term.resize(80, 25); term.resize(80, 25);
//term.setOption('convertEol', true); // Consider \n to be \r\n, this should be taken care of by "termios" //term.setOption('convertEol', true); // Consider \n to be \r\n, this should be taken care of by "termios"
} }