1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-10-01 04:37:40 +02:00

fix ctor for tools component

This commit is contained in:
Kyle Spearrin 2017-11-22 17:28:09 -05:00
parent 1360d930a9
commit 62ece2e8fe

View File

@ -5,11 +5,11 @@ import { UtilsService } from '../../../services/abstractions/utils.service';
export class ToolsController {
showExport: boolean;
i18n: any;
private webVaultBaseUrl: string = 'https://vault.bitwarden.com';
constructor(private SweetAlert: any, private i18nService: any,
private $analytics: any, private utilsService: UtilsService,
private webVaultBaseUrl: string = 'https://vault.bitwarden.com',
private environmentService: any) {
private $analytics: any, private utilsService: UtilsService,
private environmentService: any) {
this.i18n = i18nService;
this.showExport = !utilsService.isEdge();
if (environmentService.baseUrl) {