1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-17 08:43:33 +00:00

use win variables

This commit is contained in:
Kyle Spearrin
2018-04-07 00:18:31 -04:00
parent 5d66ede2ea
commit 2c87f12718
3 changed files with 7 additions and 6 deletions

View File

@@ -25,7 +25,8 @@ export class TwoFactorOptionsComponent implements OnInit {
constructor(protected authService: AuthService, protected router: Router,
protected analytics: Angulartics2, protected toasterService: ToasterService,
protected i18nService: I18nService, protected platformUtilsService: PlatformUtilsService) { }
protected i18nService: I18nService, protected platformUtilsService: PlatformUtilsService,
protected win: Window) { }
ngOnInit() {
if (this.authService.twoFactorProviders.has(TwoFactorProviderType.OrganizationDuo)) {
@@ -45,7 +46,7 @@ export class TwoFactorOptionsComponent implements OnInit {
}
if (this.authService.twoFactorProviders.has(TwoFactorProviderType.U2f) &&
this.platformUtilsService.supportsU2f(window)) {
this.platformUtilsService.supportsU2f(this.win)) {
this.providers.push(TwoFactorProviders[TwoFactorProviderType.U2f]);
}