Total Complexity | 7 |
Complexity/F | 1 |
Lines of Code | 28 |
Function Count | 7 |
Duplicated Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | "use strict"; |
||
2 | app.controller('importController', ['$scope', 'Security', function ($scope, Security, $rootScope) { |
||
3 | |||
4 | function Initialize(){ |
||
5 | $scope.importModel = {}; |
||
6 | } |
||
7 | Initialize(); |
||
8 | |||
9 | $scope.EventListener = function(scope, iElement, iAttrs, controller){ |
||
10 | iElement.ready(function() { |
||
11 | |||
12 | }) |
||
13 | } |
||
14 | |||
15 | $scope.SetDefaultValue = function(scope, iElement, iAttrs, controller){ |
||
16 | } |
||
17 | |||
18 | $scope.StatusChange = function(fieldName, newValue, newObj, scope, iElement, iAttrs, controller){ |
||
19 | } |
||
20 | |||
21 | $scope.ValidateBuffer = function(scope, iElement, iAttrs, controller){ |
||
22 | var isValid = true; |
||
23 | var record = controller.ngModel; |
||
|
|||
24 | var msg = []; |
||
25 | |||
26 | return isValid; |
||
27 | } |
||
28 | }]); |