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
On a mobile device, when using brush.filter, any events that are removed by the filter will end up causing an error of emitter(...).moved is not a function or emitter(...).touchended is not a function.
function touchmoved(event) {
emitter(this, arguments).moved(event);
}
function touchended(event) {
emitter(this, arguments).ended(event);
}
On a mobile device, when using
brush.filter
, any events that are removed by the filter will end up causing an error ofemitter(...).moved is not a function
oremitter(...).touchended is not a function
.https://codepen.io/sheldoncodes/pen/jOxvmdq (simulate a mobile device in your devtools).
The text was updated successfully, but these errors were encountered: