Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HiveStatistics/sources/HeuristicLab.Services.WebApp/3.3/WebApp/plugins/plugins/pluginsExceptionCtrl.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: 526 bytes
Line 
1(function () {
2    var module = appPluginsPlugin.getAngularModule();
3    module.controller('app.plugins.pluginsExceptionCtrl',
4        ['$scope', '$modalInstance', 'pluginName', 'exception',
5            function ($scope, $modalInstance, pluginName, exception) {
6                $scope.pluginName = pluginName;
7                $scope.exception = exception;
8                $scope.close = function () {
9                    $modalInstance.dismiss('cancel');
10                };
11            }
12        ]
13    );
14})();
Note: See TracBrowser for help on using the repository browser.