-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
26 lines (21 loc) · 935 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html>
<head>
<script src="https://code.jquery.com/jquery-latest.min.js" type="text/javascript"></script>
<script>
$(document).ready(function () {
if (navigator.userAgent.toLowerCase().indexOf("android") > -1) {
window.location.href = 'https://play.google.com/store/apps/details?id=com.pixellandstudios.humanbodyar';
}
if (navigator.userAgent.toLowerCase().indexOf("iphone") > -1) {
window.location.href = 'https://apps.apple.com/us/app/%D8%AC%D8%B3%D9%85-%D8%A7%D9%84%D8%A5%D9%86%D8%B3%D8%A7%D9%86-ar/id1536227203';
}
if (navigator.userAgent.toLowerCase().indexOf("ipad") > -1) {
window.location.href = 'https://apps.apple.com/us/app/%D8%AC%D8%B3%D9%85-%D8%A7%D9%84%D8%A5%D9%86%D8%B3%D8%A7%D9%86-ar/id1536227203';
}
});
</script>
</head>
<body>
</body>
</html>