We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 11f8d9f commit d0d9f70Copy full SHA for d0d9f70
Protest/Front/terminal.js
@@ -922,7 +922,7 @@ class Terminal extends Window {
922
}
923
924
for (const key in todo) {
925
- [x, y] = key.split(",");
+ [, y] = key.split(",");
926
delete this.screen[key];
927
let y1 = parseInt(y) + 1;
928
if (this.scrollRegionBottom && y1 >= this.scrollRegionBottom) continue;
@@ -944,7 +944,7 @@ class Terminal extends Window {
944
945
946
947
948
949
let y1 = parseInt(y) - 1;
950
if (this.scrollRegionTop && y1 <= this.scrollRegionTop) continue;
0 commit comments