Upgrade front-end dependencies and change code to use xterm 4.3.0

This commit is contained in:
NI
2019-12-06 18:54:16 +08:00
parent 519d822e9c
commit 6a84c7494d
3 changed files with 818 additions and 787 deletions

View File

@@ -99,6 +99,14 @@ class Term {
control.send(data);
});
this.term.onBinary(data => {
if (this.closed) {
return;
}
control.send(data);
});
this.term.onKey(ev => {
if (this.closed) {
return;