You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
226 B

4 years ago
  1. app.controller('ModalController', function ($scope, $modalInstance, modal) {
  2. //Modal config
  3. $scope.modal = modal;
  4. // Close modal function
  5. $scope.closeModal = function () {
  6. $modalInstance.dismiss('cancel');
  7. };
  8. });