Animate removal of bot from the list.

(imported from commit 4c7e7aa07fa58c924ed78dbdc1d81c6e4bb28756)
This commit is contained in:
Steve Howell 2013-07-10 15:40:01 -04:00
parent c27e1105e5
commit 600964b1de
1 changed files with 1 additions and 1 deletions

View File

@ -171,7 +171,7 @@ $(function () {
type: 'DELETE',
success: function () {
var row = $(e.target).closest("li");
row.remove();
row.hide('slow', function () { row.remove(); });
}
});