Fix "Migrate instance to another host" popup modal (#2803)

* Fix "Migrate instance to another host" popup

* fix OK button that was not working as it should have been
This commit is contained in:
Rafael Weingärtner 2018-08-28 22:14:03 -03:00 committed by GitHub
parent 7a0f7ab6d2
commit e6af798373
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -100,6 +100,7 @@
$('div.overlay').fadeOut(function() {
$('div.overlay').remove();
$(':ui-dialog').dialog('destroy');
});
}
else {
@ -121,7 +122,8 @@
});
}
}]
}).parent('.ui-dialog').overlay();
});
cloudStack.applyDefaultZindexAndOverlayOnJqueryDialogAndRemoveCloseButton($dataList);
};
};
}(cloudStack, jQuery));