Total Complexity | 7 |
Complexity/F | 1.17 |
Lines of Code | 24 |
Function Count | 6 |
Duplicated Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | "use strict"; |
||
2 | app.controller('reuseController', ['$scope', 'Security', function ($scope, Security, $rootScope) { |
||
3 | $scope.directiveScopeDict = {}; |
||
4 | function Initialize(){ |
||
5 | } |
||
6 | Initialize(); |
||
7 | |||
8 | $scope.EventListener = function(scope, iElement, iAttrs, controller){ |
||
9 | var prgmID = scope.programId; |
||
10 | if($scope.directiveScopeDict[prgmID] == null || typeof($scope.directiveScopeDict[prgmID]) == "undefined"){ |
||
11 | $scope.directiveScopeDict[prgmID] = scope; |
||
12 | } |
||
13 | |||
14 | iElement.ready(function() { |
||
15 | |||
16 | }) |
||
17 | } |
||
18 | |||
19 | $scope.CustomSelectedToRecord = function(sRecord, rowScope, scope, iElement, controller){ |
||
20 | } |
||
21 | |||
22 | $scope.CustomSubmitDataResult = function(responseObj, httpStatusCode, scope, element, attrs, ctrl){ |
||
23 | } |
||
24 | }]); |