mirror of
https://github.com/wavetermdev/xterm.js.git
synced 2026-08-05 13:43:48 -07:00
Remove logs
This commit is contained in:
@@ -95,7 +95,6 @@ export class AccessibilityManager implements IDisposable {
|
||||
break;
|
||||
}
|
||||
this._rowContainer.focus();
|
||||
console.log('keydown2', e);
|
||||
e.preventDefault();
|
||||
e.stopPropagation();
|
||||
return true;
|
||||
|
||||
@@ -454,7 +454,6 @@ export class Terminal extends EventEmitter implements ITerminal, IInputHandlingT
|
||||
* Binds the desired focus behavior on a given terminal object.
|
||||
*/
|
||||
private _onTextAreaFocus(): void {
|
||||
console.log('textarea.focus');
|
||||
if (this.sendFocus) {
|
||||
this.send(C0.ESC + '[I');
|
||||
}
|
||||
@@ -1375,9 +1374,7 @@ export class Terminal extends EventEmitter implements ITerminal, IInputHandlingT
|
||||
* @param {KeyboardEvent} ev The keydown event to be handled.
|
||||
*/
|
||||
protected _keyDown(ev: KeyboardEvent): boolean {
|
||||
console.log('a');
|
||||
if (this._accessibilityManager && this._accessibilityManager.isNavigationModeActive) {
|
||||
console.log('b');
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user