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

pass win params

This commit is contained in:
Kyle Spearrin
2018-04-07 00:19:04 -04:00
parent e04e064515
commit e4f209e240
3 changed files with 3 additions and 3 deletions

2
jslib

Submodule jslib updated: 5d66ede2ea...2c87f12718

View File

@@ -20,6 +20,6 @@ export class TwoFactorOptionsComponent extends BaseTwoFactorOptionsComponent {
constructor(authService: AuthService, router: Router,
analytics: Angulartics2, toasterService: ToasterService,
i18nService: I18nService, platformUtilsService: PlatformUtilsService) {
super(authService, router, analytics, toasterService, i18nService, platformUtilsService);
super(authService, router, analytics, toasterService, i18nService, platformUtilsService, window);
}
}

View File

@@ -27,7 +27,7 @@ export class ViewComponent extends BaseViewComponent implements OnChanges {
i18nService: I18nService, analytics: Angulartics2,
auditService: AuditService) {
super(cipherService, totpService, tokenService, toasterService, cryptoService, platformUtilsService,
i18nService, analytics, auditService);
i18nService, analytics, auditService, window);
}
async ngOnChanges() {