new UI - IP address - release IP - slowly slide up middle menu item and remove the element from DOM.

This commit is contained in:
Jessica Wang 2010-11-08 15:08:53 -08:00
parent 606fcdf02f
commit b0343e33b0
1 changed files with 4 additions and 2 deletions

View File

@ -765,8 +765,10 @@ var ipActionMap = {
isAsyncJob: false,
dialogBeforeActionFn : doReleaseIp,
inProcessText: "Releasing IP....",
afterActionSeccessFn: function(json, $midmenuItem1, id) {
$midmenuItem1.remove();
afterActionSeccessFn: function(json, $midmenuItem1, id) {
$midmenuItem1.slideUp("slow", function(){
$(this).remove();
});
clearRightPanel();
ipClearRightPanel();
}