I found a way to change the width of the angular mod, so that I could not figure out how to set the height I want. I need a modal width of 400 pixels, a height of 400 pixels. I also need to move it so that it is in the center of the screen. thanks plunkr
$scope.NewJobModal = function () { var modalInstance = $modal.open({ templateUrl: 'views/modals/NewJobModal.html', controller: 'NewJobModalInstanceCtrl', windowClass: 'large-Modal', resolve: { p: function () { return $scope.p; } } }); }; .large-Modal .modal-dialog{ width:30%; }
source share