Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HiveStatistics/sources/HeuristicLab.Services.WebApp.Statistics/3.3/WebApp/exceptions/exceptionDetailsDialogCtrl.js @ 12560

Last change on this file since 12560 was 12560, checked in by dglaser, 9 years ago

#2388:

HeuristicLab.Services.WebApp-3.3:

  • updated about page

HeuristicLab.Services.WebApp.Statistics-3.3:

  • added missing files
File size: 412 bytes
Line 
1(function () {
2    var module = appStatisticsPlugin.getAngularModule();
3    module.controller('app.statistics.exceptionDetailsDialogCtrl',
4        ['$scope', '$modalInstance', 'message', function ($scope, $modalInstance, message) {
5            $scope.message = message;
6            $scope.close = function () {
7                $modalInstance.dismiss('cancel');
8            };
9        }]
10    );
11})();
Note: See TracBrowser for help on using the repository browser.