mirror of https://github.com/apache/cloudstack.git
new UI - Snapshot page - delete snapshot - slowly slide up middle menu item and remove the element from DOM.
This commit is contained in:
parent
b0343e33b0
commit
89cdb61065
|
|
@ -127,8 +127,10 @@ var snapshotActionMap = {
|
|||
asyncJobResponse: "deletesnapshotresponse",
|
||||
dialogBeforeActionFn : doSnapshotDelete,
|
||||
inProcessText: "Deleting snapshot....",
|
||||
afterActionSeccessFn: function(json, $midmenuItem1, id){
|
||||
$midmenuItem1.remove();
|
||||
afterActionSeccessFn: function(json, $midmenuItem1, id){
|
||||
$midmenuItem1.slideUp("slow", function() {
|
||||
$(this).remove();
|
||||
});
|
||||
clearRightPanel();
|
||||
snapshotClearRightPanel();
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue