mirror of
https://github.com/sigmasternchen/webcli
synced 2025-03-15 06:08:54 +00:00
i changed something here?
This commit is contained in:
parent
3e66fed00f
commit
5c72fc7d6c
1 changed files with 3 additions and 0 deletions
|
@ -221,6 +221,7 @@ Terminal.prototype.output = function(text) {
|
|||
break;
|
||||
}
|
||||
if (param2.length > 0) {
|
||||
i--;
|
||||
state = ANSI_CSI3;
|
||||
break;
|
||||
}
|
||||
|
@ -695,6 +696,7 @@ Terminal.prototype.handleKeyDown = function(e) {
|
|||
altgr: e.altGraphKey
|
||||
}
|
||||
terminal.keyEvent(key);
|
||||
return false;
|
||||
}
|
||||
Terminal.prototype.handleKeyPress = function(e) {
|
||||
var key = new KeyEvent();
|
||||
|
@ -712,4 +714,5 @@ Terminal.prototype.handleKeyPress = function(e) {
|
|||
altgr: e.altGraphKey
|
||||
}
|
||||
terminal.keyEvent(key);
|
||||
return false;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue