mirror of
https://github.com/fergalmoran/dss.web.git
synced 2026-02-16 13:11:33 +00:00
8 lines
239 B
JavaScript
Executable File
8 lines
239 B
JavaScript
Executable File
angular.module('dssWebApp')
|
|
.controller('AlertDialogCtrl', function ($scope, $modalInstance, data) {
|
|
$scope.data = data;
|
|
$scope.doClose = function (result) {
|
|
$modalInstance.close(result);
|
|
};
|
|
});
|