implement lock timeout

This commit is contained in:
Kyle Spearrin 2018-06-09 14:50:29 -04:00
parent 9d52b5db23
commit 822b24be76
2 changed files with 5 additions and 1 deletions

2
jslib

@ -1 +1 @@
Subproject commit 4c083eeb92d599bd8b85fb88ec5d435079b79395
Subproject commit cd3c2ddff1abd66c6318d981a389685dc82cfc0e

View File

@ -149,6 +149,10 @@ export default class BrowserPlatformUtilsService implements PlatformUtilsService
return tabOpen;
}
lockTimeout(): number {
return null;
}
launchUri(uri: string, options?: any): void {
BrowserApi.createNewTab(uri, options && options.extensionPage === true);
}