From 2881d9c31924024270be453e044b163f19bc05db Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Thu, 19 Apr 2018 08:09:04 -0400 Subject: [PATCH] pass window to super --- jslib | 2 +- src/app/vault/password-generator-history.component.ts | 2 +- src/app/vault/password-generator.component.ts | 2 +- tsconfig.json | 3 ++- 4 files changed, 5 insertions(+), 4 deletions(-) diff --git a/jslib b/jslib index d6474aee..23917010 160000 --- a/jslib +++ b/jslib @@ -1 +1 @@ -Subproject commit d6474aee0e84c933c5a36aa2fa20b209be18d74c +Subproject commit 23917010a778e8464ba8b5f080d3306fc28a489e diff --git a/src/app/vault/password-generator-history.component.ts b/src/app/vault/password-generator-history.component.ts index ca1da023..e1d47a41 100644 --- a/src/app/vault/password-generator-history.component.ts +++ b/src/app/vault/password-generator-history.component.ts @@ -19,6 +19,6 @@ export class PasswordGeneratorHistoryComponent extends BasePasswordGeneratorHist constructor(passwordGenerationService: PasswordGenerationService, analytics: Angulartics2, platformUtilsService: PlatformUtilsService, i18nService: I18nService, toasterService: ToasterService) { - super(passwordGenerationService, analytics, platformUtilsService, i18nService, toasterService); + super(passwordGenerationService, analytics, platformUtilsService, i18nService, toasterService, window); } } diff --git a/src/app/vault/password-generator.component.ts b/src/app/vault/password-generator.component.ts index 151d98a9..a48e011c 100644 --- a/src/app/vault/password-generator.component.ts +++ b/src/app/vault/password-generator.component.ts @@ -21,6 +21,6 @@ export class PasswordGeneratorComponent extends BasePasswordGeneratorComponent { constructor(passwordGenerationService: PasswordGenerationService, analytics: Angulartics2, platformUtilsService: PlatformUtilsService, i18nService: I18nService, toasterService: ToasterService) { - super(passwordGenerationService, analytics, platformUtilsService, i18nService, toasterService); + super(passwordGenerationService, analytics, platformUtilsService, i18nService, toasterService, window); } } diff --git a/tsconfig.json b/tsconfig.json index d30525b0..ebde5f33 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -22,6 +22,7 @@ "jslib/node_modules", "dist", "jslib/dist", - "build" + "build", + "jslib/spec" ] }