1
1
mirror of https://github.com/Eugeny/tabby.git synced 2024-11-28 05:36:31 +03:00
This commit is contained in:
Eugene Pankov 2019-05-24 21:21:42 +02:00
parent a8bbdea224
commit 661ada154e
3 changed files with 0 additions and 4 deletions

View File

@ -44,7 +44,6 @@ export class EditConnectionModalComponent {
}[k]
]
}
console.log(this)
}
async ngOnInit () {

View File

@ -175,7 +175,6 @@ export class HTermFrontend extends Frontend {
this.io = this.term.io.push()
this.io.onVTKeystroke = this.io.sendString = data => this.input.next(data)
this.io.onTerminalResize = (columns, rows) => {
console.log('hterm resize')
this.resize.next({ columns, rows })
}
this.ready.next(null)

View File

@ -155,7 +155,6 @@ export class Session extends BaseSession {
})
this.pty.on('exit', () => {
console.log('session exit')
if (this.pauseAfterExit) {
return
} else if (this.open) {
@ -164,7 +163,6 @@ export class Session extends BaseSession {
})
this.pty.on('close', () => {
console.log('session close')
if (this.pauseAfterExit) {
this.emitOutput('\r\nPress any key to close\r\n')
} else if (this.open) {