Reputation: 622
How can I disable the sorting animation? I find it annoying when I drop items in the end that there's an animation.
Try dragging items into the box and see the effect. You should have at least one item and you should drop the item second last or last position.
plnkr.co/edit/Jw1S9ij7jbyaeEcO8UEl?p=preview[1]
Upvotes: 0
Views: 541
Reputation: 4972
You should use revertDuration
option in your draggable configuration.
$(".draggable li").draggable({
//..
revertDuration: 0
});
Plunker: http://plnkr.co/edit/FxkTYanq1S4nHIbhNT21?p=preview
Upvotes: 1