function detect() { const userAgent = navigator.userAgent || navigator.vendor || window.opera; if (/android/i.test(userAgent)) { window.location.replace('/qr-pineda-descarga-app-android/'); } else if(iOS()) { openIosApp(); setTimeout(fallbackToStore, 250); } else { window.location.replace('/qr-pineda-descarga-app-desktop/'); } return null; } fallbackToStore = function() { window.location.replace('/qr-pineda-descarga-app-ios/'); }; openIosApp = function() { window.location.replace('com.vocento.abcsevilla://app-deeplink/qrcode/ABCGOLFPINEDA23'); }; function iOS() { return [ 'iPad Simulator', 'iPhone Simulator', 'iPod Simulator', 'iPad', 'iPhone', 'iPod'].includes(navigator.platform) // iPad on iOS 13 detection || (navigator.userAgent.includes("Mac") && "ontouchend" in document) }; window.onload = detect();