From 600964b1debb4a2d7b423fcae394ada6a8d96e23 Mon Sep 17 00:00:00 2001 From: Steve Howell Date: Wed, 10 Jul 2013 15:40:01 -0400 Subject: [PATCH] Animate removal of bot from the list. (imported from commit 4c7e7aa07fa58c924ed78dbdc1d81c6e4bb28756) --- zephyr/static/js/settings.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zephyr/static/js/settings.js b/zephyr/static/js/settings.js index c0022b975e..dc0cd6394a 100644 --- a/zephyr/static/js/settings.js +++ b/zephyr/static/js/settings.js @@ -171,7 +171,7 @@ $(function () { type: 'DELETE', success: function () { var row = $(e.target).closest("li"); - row.remove(); + row.hide('slow', function () { row.remove(); }); } });