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
The filter logic in _onTapStart is overzealous in that it will prevent clicks entirely. For example, if the item to be dragged has an input inside of it, the input becomes impossible to focus with the mouse. The problem appears to be resolved when I comment out evt.preventDefault() in the preventOnFilter && evt.preventDefault(); lines. I'm not submitting a pull request because I'm not sure if such a change would introduce other bugs.
The text was updated successfully, but these errors were encountered:
The filter logic in
_onTapStart
is overzealous in that it will prevent clicks entirely. For example, if the item to be dragged has an input inside of it, the input becomes impossible to focus with the mouse. The problem appears to be resolved when I comment outevt.preventDefault()
in thepreventOnFilter && evt.preventDefault();
lines. I'm not submitting a pull request because I'm not sure if such a change would introduce other bugs.The text was updated successfully, but these errors were encountered: