1
0
mirror of https://github.com/bitwarden/web synced 2025-12-11 22:03:21 +00:00

isViewOpen returns promise

This commit is contained in:
Kyle Spearrin
2019-08-20 13:47:58 -04:00
parent 7d76473580
commit e37292a276
2 changed files with 3 additions and 3 deletions

2
jslib

Submodule jslib updated: 4f876fc222...ae37c2198b

View File

@@ -86,8 +86,8 @@ export class WebPlatformUtilsService implements PlatformUtilsService {
return 'UA-81915606-3'; return 'UA-81915606-3';
} }
isViewOpen(): boolean { isViewOpen(): Promise<boolean> {
return false; return Promise.resolve(false);
} }
lockTimeout(): number { lockTimeout(): number {