Marcio
Marcio

Reputation: 622

How to disable sortable animation Jquery

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

Answers (1)

D_R
D_R

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

Related Questions