보류 중 모드에서 요청이있을 때 UIBMODAL을 열 수 있습니까? 지금은UibModal - 약속이없는 보류 모드에서 열림
의 붙어 연결이 복원되고 모든 pendind 요청은 큐처럼 작동하고 팝업 내가 팝업이 약속이나 요청없이 작동합니다 원하는
을 나타날 때까지 - 오류의 경우
모달을 위해 코드 : 모든 브라우저의
var modalInstance = $uibModal.open({
animation: false,
templateUrl: 'modal.html',
controller: function($scope, $uibModalInstance) {
$scope.closeModal = function() {
$uibModalInstance.close();
};
},
scope: $scope,
size: 'lg'
});