Redirect to instructions page if user on mobile
This commit is contained in:
parent
b9e2b59504
commit
5063fef4f5
|
@ -250,16 +250,20 @@ async function loadApp() {
|
||||||
|
|
||||||
if (!preventRedirect) {
|
if (!preventRedirect) {
|
||||||
if (/iPad|iPhone|iPod/.test(navigator.userAgent) && !window.MSStream) {
|
if (/iPad|iPhone|iPod/.test(navigator.userAgent) && !window.MSStream) {
|
||||||
if (confirm(_t("Riot is not supported on mobile web. Install the app?"))) {
|
window.location = "https://status.im/join-riot.html";
|
||||||
|
return;
|
||||||
|
/*if (confirm(_t("Riot is not supported on mobile web. Install the app?"))) {
|
||||||
window.location = "https://itunes.apple.com/us/app/vector.im/id1083446067";
|
window.location = "https://itunes.apple.com/us/app/vector.im/id1083446067";
|
||||||
return;
|
return;
|
||||||
}
|
}*/
|
||||||
}
|
}
|
||||||
else if (/Android/.test(navigator.userAgent)) {
|
else if (/Android/.test(navigator.userAgent)) {
|
||||||
if (confirm(_t("Riot is not supported on mobile web. Install the app?"))) {
|
window.location = "https://status.im/join-riot.html";
|
||||||
|
return;
|
||||||
|
/*if (confirm(_t("Riot is not supported on mobile web. Install the app?"))) {
|
||||||
window.location = "https://play.google.com/store/apps/details?id=im.vector.alpha";
|
window.location = "https://play.google.com/store/apps/details?id=im.vector.alpha";
|
||||||
return;
|
return;
|
||||||
}
|
}*/
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue