Remove logs

This commit is contained in:
Daniel Imms
2018-01-12 21:15:53 -08:00
parent 2a187a26e0
commit 1e41b11319
2 changed files with 0 additions and 4 deletions
-1
View File
@@ -95,7 +95,6 @@ export class AccessibilityManager implements IDisposable {
break;
}
this._rowContainer.focus();
console.log('keydown2', e);
e.preventDefault();
e.stopPropagation();
return true;
-3
View File
@@ -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;
}