mirror of https://github.com/apache/cloudstack.git
new UI - delete volume - slowly slide up middle menu item and remove the element from DOM.
This commit is contained in:
parent
e4ff8fb722
commit
76bc3e21e6
|
|
@ -575,8 +575,10 @@ var volumeActionMap = {
|
|||
api: "deleteVolume",
|
||||
isAsyncJob: false,
|
||||
inProcessText: "Deleting volume....",
|
||||
afterActionSeccessFn: function(json, $midmenuItem1, id) {
|
||||
$midmenuItem1.remove();
|
||||
afterActionSeccessFn: function(json, $midmenuItem1, id) {
|
||||
$midmenuItem1.slideUp("slow", function() {
|
||||
$(this).remove();
|
||||
});
|
||||
clearRightPanel();
|
||||
volumeClearRightPanel();
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue