confirm.controller.js 317 B

12345678910111213141516
  1. app.controller('Confirm', confirmController);
  2. function confirmController($scope, $uibModalInstance) {
  3. $scope.cancel = function() {
  4. $uibModalInstance.close(false);
  5. };
  6. $scope.ok = function() {
  7. $uibModalInstance.close(true);
  8. }
  9. }
  10. confirmController.$inject = [
  11. '$scope',
  12. '$uibModalInstance',
  13. ];