diff --git a/ui/new/scripts/cloud.core2.volume.js b/ui/new/scripts/cloud.core2.volume.js index ad6b218b802..86203144d97 100644 --- a/ui/new/scripts/cloud.core2.volume.js +++ b/ui/new/scripts/cloud.core2.volume.js @@ -861,8 +861,10 @@ var volumeSnapshotActionMap = { isAsyncJob: true, asyncJobResponse: "deletesnapshotresponse", inProcessText: "Deleting snapshot....", - afterActionSeccessFn: function(id) { - $("#volume_snapshot_"+id).remove(); + afterActionSeccessFn: function(id) { + $("#volume_snapshot_"+id).slideUp("slow", function() { + $(this).remove(); + }); } } ,