1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-15 07:43:35 +00:00

launch uri adjustments

This commit is contained in:
Kyle Spearrin
2019-04-26 09:12:37 -04:00
parent 1060775cad
commit df81d9fd5f
3 changed files with 16 additions and 19 deletions

View File

@@ -19,7 +19,6 @@ import { CiphersComponent as BaseCiphersComponent } from 'jslib/angular/componen
import { CipherType } from 'jslib/enums/cipherType';
import { CipherView } from 'jslib/models/view/cipherView';
import { LoginView } from 'jslib/models/view/loginView';
const MaxCheckedCount = 500;
@@ -51,13 +50,9 @@ export class CiphersComponent extends BaseCiphersComponent implements OnDestroy
(c as any).checked = select == null ? !(c as any).checked : select;
}
launch(view: LoginView) {
if (!view.canLaunch) {
return;
}
launch(uri: string) {
this.platformUtilsService.eventTrack('Launched Login URI');
this.platformUtilsService.launchUri(view.launchUri);
this.platformUtilsService.launchUri(uri);
}
selectAll(select: boolean) {