isViewOpen returns promise
This commit is contained in:
parent
7d76473580
commit
e37292a276
2
jslib
2
jslib
|
@ -1 +1 @@
|
||||||
Subproject commit 4f876fc222a0b6b5156139f43a4623f6fa083465
|
Subproject commit ae37c2198bd2cb4799f76592c7fa49be154135d3
|
|
@ -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 {
|
||||||
|
|
Loading…
Reference in New Issue