mirror of
https://github.com/fergalmoran/dss.web.git
synced 2026-02-15 20:44:34 +00:00
10 lines
243 B
JavaScript
Executable File
10 lines
243 B
JavaScript
Executable File
angular.module('dssWebApp')
|
|
.controller('confirmDialogCtrl', function ($scope, $modalInstance, data) {
|
|
|
|
$scope.data = data;
|
|
|
|
$scope.doClose = function (result) {
|
|
$modalInstance.close(result);
|
|
};
|
|
});
|