summaryrefslogtreecommitdiff
path: root/frontend/ios_popup.js
blob: 0b700edf5d4eaf734a8601c5b5c56975efa996dd (plain)
1
2
3
4
5
6
7
8
9
(async () => {
const cookie = await cookieStore.get("subscription_endpoint");

if (navigator.userAgent.match(/iPhone|iPad|iPod/i) 
	&& !window.matchMedia('(display-mode: standalone)').matches 
	&& !cookie) {
	openPopup();
}
})();