tiny-date-picker icon indicating copy to clipboard operation
tiny-date-picker copied to clipboard

range picker not working on ipadOS 13

Open forwardever opened this issue 5 years ago • 2 comments

range picker not working on ipadOS 13

I used your demo page and browserstack, date picker seems to work though

forwardever avatar May 20 '20 09:05 forwardever

any hint how to fix this? this issue makes the range picker unusable on all newer ipad devices

using browserstack, the only way to select a date is to triple click a day

forwardever avatar Aug 13 '20 08:08 forwardever

The newer iPad OS versions don't have "iPad" string in userAgent which is why this plugin is not able to solve the double clicking part in latest iPad OS. You can update the userAgent check in plugin code to with below condition- /Macintosh/.test(navigator.userAgent) && 'ontouchend' in document

hrishiv90 avatar Feb 09 '22 07:02 hrishiv90