blob: fa8d751cd40529171ef8c7c6d076e494a94bd9c3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
// This one doesn't work at the moment but I'll try to find a way to fix it.
if (/Android|webOS|iPhone|iPad|iPod|BlackBerry|BB|PlayBook|IEMobile|Windows Phone|Kindle|Silk|Opera Mini/i.test(navigator.userAgent)) {
location.href = './mobile/';
} else if (/Chrome|Mac|MacBook|Firefox|Mozilla|Opera|OperaGX|Avast|IE|Windows|MacOS|/i.test(navigator.userAgent)) {
location.href = './index.html';
} else {
location.href = './index.html';
}
|