website/templates/google_native_app_prompt.html
Roman Tsisyk e5c9c53e20 Move badges from Markdown to HTML
Markdown should contain content, not HTML and JS code.

Signed-off-by: Roman Tsisyk <roman@tsisyk.com>
2022-11-19 17:01:28 +01:00

13 lines
577 B
HTML

<!-- BEGIN OF GOOGLE NATIVE APP PROMPT -->
<!-- https://developers.google.com/web/fundamentals/app-install-banners/native -->
<button id='addPWA' class='installPWAButton'>{{ trans(key='install-googleplay', lang=lang) }}</button>
<script>
window.addEventListener('beforeinstallprompt', (e) => {
// Prevent Chrome 67 and earlier from automatically showing the prompt.
e.preventDefault();
const add = document.getElementById('addPWA');
add.style.display = 'block';
add.onclick = () => { e.prompt(); }
});
</script>
<!-- END OF GOOGLE NATIVE APP PROMPT -->