mirror of https://github.com/apache/cloudstack.git
new UI - IP address - release IP - slowly slide up middle menu item and remove the element from DOM.
This commit is contained in:
parent
606fcdf02f
commit
b0343e33b0
|
|
@ -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();
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue