Last change
on this file since 16869 was
12560,
checked in by dglaser, 9 years ago
|
#2388:
HeuristicLab.Services.WebApp-3.3:
HeuristicLab.Services.WebApp.Statistics-3.3:
|
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.