enable promo banner

This commit is contained in:
Danny Coates 2019-03-13 10:30:03 -07:00
parent 44043b54b3
commit d28da3247d
No known key found for this signature in database
GPG key ID: 4C442633C62E00CB
3 changed files with 17 additions and 3 deletions

View file

@ -93,6 +93,10 @@ export default async function getCapabilities() {
const share =
typeof navigator.share === 'function' && LOCALE.startsWith('en'); // en until strings merge
const standalone =
window.matchMedia('(display-mode: standalone)').matches ||
navigator.standalone;
return {
account,
crypto,
@ -101,6 +105,7 @@ export default async function getCapabilities() {
streamDownload:
nativeStreams && serviceWorker && browserName() !== 'safari',
multifile: nativeStreams || polyStreams,
share
share,
standalone
};
}