Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Services.WebApp/3.3/WebApp/plugins/plugins/pluginsExceptionCtrl.js @ 12553

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

#2394: Added missing plugin controller.

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.