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 Aug 25, 2022. It is now read-only.
It seems that event.changedTouches is always undefined, and when the touch event type is touchend, event.originalEvent.targetTouches is a zero-length array.
I want to reveal the whole card when 60% of it is scratched off:
On PC, it works as expected. But on my iPad's Chrome and Safari, it just does not clear.
P.S.
this.clear()
is copied from the demo site.UPDATE
The direct cause is:
It seems that
event.changedTouches
is alwaysundefined
, and when the touch event type is touchend,event.originalEvent.targetTouches
is a zero-length array.I monkey patched line from 311 like this:
and everything works fine.
The text was updated successfully, but these errors were encountered: