1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-14 15:23:33 +00:00

pass window to super

This commit is contained in:
Kyle Spearrin
2018-04-19 08:09:04 -04:00
parent bb9452f057
commit 2881d9c319
4 changed files with 5 additions and 4 deletions

2
jslib

Submodule jslib updated: d6474aee0e...23917010a7

View File

@@ -19,6 +19,6 @@ export class PasswordGeneratorHistoryComponent extends BasePasswordGeneratorHist
constructor(passwordGenerationService: PasswordGenerationService, analytics: Angulartics2, constructor(passwordGenerationService: PasswordGenerationService, analytics: Angulartics2,
platformUtilsService: PlatformUtilsService, i18nService: I18nService, platformUtilsService: PlatformUtilsService, i18nService: I18nService,
toasterService: ToasterService) { toasterService: ToasterService) {
super(passwordGenerationService, analytics, platformUtilsService, i18nService, toasterService); super(passwordGenerationService, analytics, platformUtilsService, i18nService, toasterService, window);
} }
} }

View File

@@ -21,6 +21,6 @@ export class PasswordGeneratorComponent extends BasePasswordGeneratorComponent {
constructor(passwordGenerationService: PasswordGenerationService, analytics: Angulartics2, constructor(passwordGenerationService: PasswordGenerationService, analytics: Angulartics2,
platformUtilsService: PlatformUtilsService, i18nService: I18nService, platformUtilsService: PlatformUtilsService, i18nService: I18nService,
toasterService: ToasterService) { toasterService: ToasterService) {
super(passwordGenerationService, analytics, platformUtilsService, i18nService, toasterService); super(passwordGenerationService, analytics, platformUtilsService, i18nService, toasterService, window);
} }
} }

View File

@@ -22,6 +22,7 @@
"jslib/node_modules", "jslib/node_modules",
"dist", "dist",
"jslib/dist", "jslib/dist",
"build" "build",
"jslib/spec"
] ]
} }