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