new UI - delete volume - slowly slide up middle menu item and remove the element from DOM.

This commit is contained in:
Jessica Wang 2010-11-08 14:43:28 -08:00
parent e4ff8fb722
commit 76bc3e21e6

View File

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