1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-18 01:03:35 +00:00

adjustments for mas

This commit is contained in:
Kyle Spearrin
2018-02-26 23:43:27 -05:00
parent 8db8557731
commit 36e0e32d10
4 changed files with 10 additions and 3 deletions

View File

@@ -19,6 +19,7 @@ import { TokenService } from 'jslib/abstractions/token.service';
})
export class PremiumComponent implements OnInit {
isPremium: boolean = false;
showManageMembership: boolean = false;
price: string = '$10';
refreshPromise: Promise<any>;
@@ -28,6 +29,7 @@ export class PremiumComponent implements OnInit {
async ngOnInit() {
this.isPremium = this.tokenService.getPremium();
this.showManageMembership = !this.platformUtilsService.isMacAppStore();
}
async refresh() {