You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It is caused by the default setting of 'request desktop site' in ipad on safari, it makes its useragent claim that its an intel mac. This is the default setting
The final entry in that conversation has a fix that works
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)
}
this could be tweaked into working in bowser
The text was updated successfully, but these errors were encountered:
I know this was raised and closed before but I wanted to poke at it again
in this long thread this issue is explored https://developer.apple.com/forums/thread/119186
It is caused by the default setting of 'request desktop site' in ipad on safari, it makes its useragent claim that its an intel mac. This is the default setting
The final entry in that conversation has a fix that works
this could be tweaked into working in bowser
The text was updated successfully, but these errors were encountered: