fontawesome 5

This commit is contained in:
Eugene Pankov
2018-12-21 21:37:34 +01:00
parent c204f6d5a4
commit 9aaf670092
16 changed files with 61 additions and 60 deletions

View File

@@ -1,6 +1,5 @@
import { Injectable, NgZone } from '@angular/core'
import { SSHConnection } from '../api'
import SSHModule from '..'
let xkeychain
let wincredmgr
@@ -14,7 +13,7 @@ try {
}
}
@Injectable({ providedIn: SSHModule })
@Injectable({ providedIn: 'root' })
export class PasswordStorageService {
constructor (
private zone: NgZone,

View File

@@ -9,7 +9,6 @@ import { TerminalTabComponent } from 'terminus-terminal'
import { SSHConnection, SSHSession } from '../api'
import { PromptModalComponent } from '../components/promptModal.component'
import { PasswordStorageService } from './passwordStorage.service'
import SSHModule from '..'
const { SSH2Stream } = require('ssh2-streams')
let windowsProcessTree
@@ -18,7 +17,7 @@ try {
} catch (e) {
} // tslint:disable-line
@Injectable({ providedIn: SSHModule })
@Injectable({ providedIn: 'root' })
export class SSHService {
private logger: Logger