1
0
Fork 0
mirror of https://github.com/Ylianst/MeshCentral.git synced 2025-03-09 15:40:18 +00:00

Rename width and height to cols and rows to fix size issue with non xterm terminal

This commit is contained in:
TotallyNotElite 2020-02-05 21:56:42 +01:00
parent 6bf82c7cb3
commit 291c9c0af3
2 changed files with 5 additions and 5 deletions

View file

@ -73,7 +73,7 @@ var CreateAmtRemoteTerminal = function (divid, options) {
}
obj.xxStateChange = function (newstate) {
if ((newstate == 3) && (options != null) && (options.xterm == true)) { obj.TermSendKeys(' stty rows ' + obj.height + ' cols ' + obj.width + ';clear\n'); }
//if ((newstate == 3) && (options != null) && (options.xterm == true)) { obj.TermSendKeys(' stty rows ' + obj.height + ' cols ' + obj.width + ';clear\n'); }
}
obj.ProcessData = function (str) {
@ -805,6 +805,6 @@ var CreateAmtRemoteTerminal = function (divid, options) {
obj.heightLock = 0;
obj.DivElement.style['height'] = '';
if ((options != null) && (options.width != null) && (options.height != null)) { obj.Init(options.width, options.height); } else { obj.Init(); }
if ((options != null) && (options.cols != null) && (options.rows != null)) { obj.Init(options.cols, options.rows); } else { obj.Init(); }
return obj;
}