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
I'll see if I can do a pull, but it may be a bit out of my league (and/or require more time than I have).
Basically, with JQuery.draggable you can pass handle: #element so that the entire thing is only dragged using the specified element. I did discover that I can sort of do the reverse with pep by using elementsWithInteraction.
<div id="draggable">
<div id="handle">H</div>
<div id="content">This is text, but you cannot use the mouse to drag it around</div>
</div>
So for JQuery you would use handle: #handle but I think for pep doing elementsWithInteraction: #content will have the same result.
It's not identical, but I think it works as a workaround in most situations.
This would be super useful.
The text was updated successfully, but these errors were encountered: