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