mirror of https://github.com/apache/cloudstack.git
new UI - slowly slide up snapshot after deleting it.
This commit is contained in:
parent
e2114b1950
commit
fc6a551ac7
|
|
@ -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();
|
||||
});
|
||||
}
|
||||
}
|
||||
,
|
||||
|
|
|
|||
Loading…
Reference in New Issue