Say you have a basic Bootstrap Modal
And you try to make it draggable using jQuery UI.
You can simply do, this
$('#myModal').draggable()
This works great, however I've noticed the speed of the cursor can be a lot faster than how the speed of the modal's dragging. This can result in the cursor being far ahead of the actual modal and things looking wonky.
Here's an example of what I mean https://jsfiddle.net/dzmqg8ub/3/
Any solutions to this?
Thanks!