1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-12 14:23:32 +00:00

isMacAppStore implementation

This commit is contained in:
Kyle Spearrin
2018-02-26 23:51:17 -05:00
parent 81c9f5a5f0
commit 0664f98bc2
2 changed files with 5 additions and 1 deletions

2
jslib

Submodule jslib updated: b747830c5b...902d72457c

View File

@@ -110,6 +110,10 @@ export default class BrowserPlatformUtilsService implements PlatformUtilsService
return this.getDevice() === DeviceType.Safari; return this.getDevice() === DeviceType.Safari;
} }
isMacAppStore(): boolean {
return false;
}
analyticsId(): string { analyticsId(): string {
if (this.analyticsIdCache) { if (this.analyticsIdCache) {
return this.analyticsIdCache; return this.analyticsIdCache;