1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-07-16 13:55:52 +02: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

@ -1 +1 @@
Subproject commit 4f876fc222a0b6b5156139f43a4623f6fa083465
Subproject commit ae37c2198bd2cb4799f76592c7fa49be154135d3

View File

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