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
Since $drag.parents().on("mousemove") is added on every "mousedown", the plugin was eventually stopping in the browser (especially iPad). Adding $drag.parents().off('mousemove') in $(".draggable").on("mouseup") seemed to do the trick for me. Maybe move this to a delegated event?
Setting the setTimeout's to a local variable and then using clearTimeout before the logic seemed to help as well.
The text was updated successfully, but these errors were encountered:
Since $drag.parents().on("mousemove") is added on every "mousedown", the plugin was eventually stopping in the browser (especially iPad). Adding$drag.parents().off('mousemove') in $ (".draggable").on("mouseup") seemed to do the trick for me. Maybe move this to a delegated event?
Setting the setTimeout's to a local variable and then using clearTimeout before the logic seemed to help as well.
The text was updated successfully, but these errors were encountered: