mirror of https://github.com/apache/cloudstack.git
new UI - Service Offering page - Delete Service Offering - slowly slide up middle menu item and remove element from DOM.
This commit is contained in:
parent
4646be7587
commit
d48c152120
|
|
@ -267,8 +267,10 @@ var serviceOfferingActionMap = {
|
|||
api: "deleteServiceOffering",
|
||||
isAsyncJob: false,
|
||||
inProcessText: "Deleting service offering....",
|
||||
afterActionSeccessFn: function(json, $midmenuItem1, id) {
|
||||
$midmenuItem1.remove();
|
||||
afterActionSeccessFn: function(json, $midmenuItem1, id) {
|
||||
$midmenuItem1.slideUp("slow", function() {
|
||||
$(this).remove();
|
||||
});
|
||||
clearRightPanel();
|
||||
serviceOfferingClearRightPanel();
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue