new UI - slowly slide up snapshot after deleting it.

This commit is contained in:
Jessica Wang 2010-09-25 15:41:56 -07:00
parent e2114b1950
commit fc6a551ac7

View File

@ -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();
});
}
}
,