GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Passed
Push — master ( da5f76...59bb8c )
by Keith
76:35
created

demo/v2/js/controller/24editbox.js   A

Complexity

Total Complexity 6
Complexity/F 1

Size

Lines of Code 29
Function Count 6

Duplication

Duplicated Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 17
dl 0
loc 29
rs 10
c 0
b 0
f 0
wmc 6
mnd 0
bc 0
fnc 6
bpm 0
cpm 1
noi 0

1 Function

Rating   Name   Duplication   Size   Complexity  
A 24editbox.js ➔ Initialize 0 4 2
1
"use strict";
2
app.controller('editboxController', ['$scope', 'Security', function ($scope, Security, $rootScope) {
3
	$scope.previousSelectedRecord = {};
4
	$scope.previousPointedRecord = {};
5
	
6
    function Initialize(){
7
	  var entryForm = {};    
8
	  $scope.entryForm = entryForm;
9
    }
10
    Initialize();
11
12
    $scope.EventListener = function(scope, iElement, iAttrs, controller){
13
        iElement.ready(function() {
14
15
        })
16
    }
17
18
    $scope.CustomSelectedToRecord = function(sRecord, rowScope, scope, iElement, controller){
19
        // asign the selected record to ng-model
20
        $scope.entryForm.DeptCode = sRecord.DepartmentCode;
21
		$scope.previousSelectedRecord = sRecord;
22
    }
23
24
    $scope.CustomPointedToRecord = function(sRecord, rowScope, scope, iElement, controller){
25
		// asign the pointed record to ng-model
26
		$scope.entryForm.DeptCode = sRecord.DepartmentCode;
27
		$scope.previousPointedRecord = sRecord;
28
    }
29
}]);