Rev 3266 |
|
Comparar con el anterior |
Ultima modificación |
Ver Log
|
Rev |
Autor |
Línea Nro. |
Línea |
3719 |
stevensc |
1 |
export function isIOSDevice() {
|
|
|
2 |
const userAgent = navigator.userAgent || navigator.vendor || window.opera;
|
|
|
3 |
return /iPad|iPhone|iPod/.test(userAgent) && !window.MSStream;
|
|
|
4 |
}
|
|
|
5 |
|
|
|
6 |
export function isAndroidDevice() {
|
|
|
7 |
const userAgent = navigator.userAgent || navigator.vendor || window.opera;
|
|
|
8 |
return /android/i.test(userAgent);
|
|
|
9 |
}
|