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
{{ message }}
This repository has been archived by the owner on Jun 21, 2022. It is now read-only.
when on a touch device using chrome, the e.originalEvent.touches is empty, so the touch events on the clockpicker weren't working. this is fixed by replacing e.originalEvent.touches[0] with (e.originalEvent.touches[0]===undefined || e.originalEvent.touches.length==0 ? e.originalEvent.changedTouches[0] : e.originalEvent.touches[0]) in the mousedown() function in jquery-clockpicker.js
The text was updated successfully, but these errors were encountered:
when on a touch device using chrome, the e.originalEvent.touches is empty, so the touch events on the clockpicker weren't working. this is fixed by replacing e.originalEvent.touches[0] with (e.originalEvent.touches[0]===undefined || e.originalEvent.touches.length==0 ? e.originalEvent.changedTouches[0] : e.originalEvent.touches[0]) in the mousedown() function in jquery-clockpicker.js
The text was updated successfully, but these errors were encountered: