bumped Angular

This commit is contained in:
Eugene Pankov
2017-07-15 19:07:41 +02:00
parent 19565fba2c
commit e64126af37
11 changed files with 91 additions and 51 deletions

View File

@@ -47,7 +47,7 @@ export class TerminalTabComponent extends BaseTabComponent {
) {
super()
this.decorators = this.decorators || []
this.title$.next('Terminal')
this.title = 'Terminal'
this.configSubscription = config.changed$.subscribe(() => {
this.configure()
})
@@ -143,7 +143,7 @@ export class TerminalTabComponent extends BaseTabComponent {
attachHTermHandlers (hterm: any) {
hterm.setWindowTitle = (title) => {
this.zone.run(() => {
this.title$.next(title)
this.title = title
})
}