mirror of
https://github.com/bitwarden/desktop.git
synced 2024-11-24 11:55:50 +01:00
pass window to super
This commit is contained in:
parent
bb9452f057
commit
2881d9c319
2
jslib
2
jslib
@ -1 +1 @@
|
||||
Subproject commit d6474aee0e84c933c5a36aa2fa20b209be18d74c
|
||||
Subproject commit 23917010a778e8464ba8b5f080d3306fc28a489e
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
@ -22,6 +22,7 @@
|
||||
"jslib/node_modules",
|
||||
"dist",
|
||||
"jslib/dist",
|
||||
"build"
|
||||
"build",
|
||||
"jslib/spec"
|
||||
]
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user