This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Description
On IE 11, The modal sometime does not open fully and shows like faded pane.

This happens 1 in 3 times.
We are calling below method to open and close the modal
For open:
$scope.Submit = function (row){
var uibModalInstance = $uibModal.open({
templateUrl: '/SiteAssets/ERAssets/EditMasterData.html',
controller: 'editController',
windowClass: 'app-modal-window',
backdrop: 'static',
resolve: {
details: function () {
return row;
}
}
});
}
For closing
$scope.close = function () {
$uibModalInstance.close();
$uibModalInstance.destroy();
$scope.$emit('UpdateERMasterPlan');
}
I'm submitting a ...
Current behavior:
Expected / new behavior:
Minimal reproduction of the problem with instructions:
AngularJS version: 1.6.9
Browser: [IE 11 ]
Anything else: