UI Sortable with revert, click while animating can cause visibility to set to hidden
Paul,
If you view the demo of ui sortable at:
http://ui.jquery.com/repository/latest/demos/functional/#ui.sortable
you can get some sample code to recreate the problem, so long as you
add parameter "revert" to the sortable declaration and set it to
"true", as in:
$("#selectedUsers").sortable({
connectWith: ["#userList"]
,revert: true
});
While the draggable element is animating back into position, if you
click just at the right time near the elements border, the elements'
css visible property gets (erroneously) set to "hidden".
Thanks,
Howard