1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-17 00:33:44 +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

@@ -46,7 +46,7 @@ export class TwoFactorComponent implements OnInit, OnDestroy {
protected i18nService: I18nService, protected apiService: ApiService,
protected platformUtilsService: PlatformUtilsService, protected syncService: SyncService,
protected win: Window, protected environmentService: EnvironmentService) {
this.u2fSupported = this.platformUtilsService.supportsU2f(window);
this.u2fSupported = this.platformUtilsService.supportsU2f(win);
}
async ngOnInit() {
@@ -119,7 +119,7 @@ export class TwoFactorComponent implements OnInit, OnDestroy {
}
setTimeout(() => {
(window as any).Duo.init({
(this.win as any).Duo.init({
host: params.Host,
sig_request: params.Signature,
submit_callback: async (f: HTMLFormElement) => {