1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-09-10 01:28:36 +02:00

pass win params

This commit is contained in:
Kyle Spearrin 2018-04-07 00:18:43 -04:00
parent 02d299023c
commit 09f770c7b0
3 changed files with 5 additions and 3 deletions

2
jslib

@ -1 +1 @@
Subproject commit 5d66ede2ea1e73ba0ad8bf949bd74992e7a78582
Subproject commit 2c87f127185f073745daa596152ee9039032c655

View File

@ -20,7 +20,7 @@ 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);
}
choose(p: any) {

View File

@ -11,6 +11,8 @@ import {
import { ToasterService } from 'angular2-toaster';
import { Angulartics2 } from 'angulartics2';
import { BrowserApi } from '../../browser/browserApi';
import { AuditService } from 'jslib/abstractions/audit.service';
import { CipherService } from 'jslib/abstractions/cipher.service';
import { CryptoService } from 'jslib/abstractions/crypto.service';
@ -33,7 +35,7 @@ export class ViewComponent extends BaseViewComponent implements OnInit {
auditService: AuditService, private route: ActivatedRoute,
private router: Router, private location: Location) {
super(cipherService, totpService, tokenService, toasterService, cryptoService, platformUtilsService,
i18nService, analytics, auditService);
i18nService, analytics, auditService, window);
}
ngOnInit() {