I was looking for an answer for this, and haven't found one yet.
I have a system with bootstrap and jQuery sortable, the thing is that when I move an element from one list to another the element is like moving slower than the mouse cursor, it's like gaining gap between the cursor and the element, and when I get to the other list, the placeholder appears when the mouse is near but not on the exact position of the placeholder, and the element is several pixels behind
I made a video with a quick example to see https://youtu.be/MhxAhIDUj3Y
More information on this I'm using a bootstrap panel inside the LI element, the markup is like this
<li class="ui-sortable-handle" style="display: list-item;">
<div class="panel panel-default span4">
</div>
</li>
The options that I use on sortable are this
placeholder: 'ui-sortable-placeholder',
connectWith: ".connectedSortable",
helper: 'clone',
scroll: false,
start: function(e, ui){
ui.placeholder.height(ui.item.height());
}
Do you know what is going on to get this strange mouse gap between the cursor and the element?
Here's a working fiddle reproducing the behavior https://jsfiddle.net/3jj6k7bm/
Any help will really be appreciated, thank you