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 ( 4f400b...27c2a7 )
by Keith
80:08
created

demo/v2/js/controller/rc-52-list-computer-language.js   A

Complexity

Total Complexity 9
Complexity/F 1

Size

Lines of Code 35
Function Count 9

Duplication

Duplicated Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 20
dl 0
loc 35
rs 10
c 0
b 0
f 0
wmc 9
mnd 0
bc 0
fnc 9
bpm 0
cpm 1
noi 0

1 Function

Rating   Name   Duplication   Size   Complexity  
A rc-52-list-computer-language.js ➔ Initialize 0 5 2
1
"use strict";
2
app.controller('computerLanguageListController', ['$scope', '$state', 'Security', function ($scope, $state, Security, $rootScope) {
3
    function Initialize(){
4
        var entryForm = {};
5
6
        $scope.entryForm = entryForm;
7
    }
8
    Initialize();
9
10
    $scope.EventListener = function(scope, iElement, iAttrs, controller){
11
        iElement.ready(function() {
12
13
        })
14
    }
15
16
    $scope.SetDefaultValue = function(scope, iElement, iAttrs, controller){
17
		
18
    }
19
20
    $scope.StatusChange = function(fieldName, newValue, newObj, scope, iElement, iAttrs, controller){
21
		
22
    }
23
24
    $scope.ValidateBuffer = function(scope, iElement, iAttrs, controller){
25
        return true;
26
    }
27
28
	$scope.CustomPointedToRecord = function(pRecord, rowScope, scope, iElement, controller){
29
	}
30
31
	$scope.CustomSelectedToRecord = function(sRecord, rowScope, scope, iElement, controller){
32
		var languageID = sRecord.LanguageID;
33
		$state.go("rc-52-list-computer-language.rc-52-entry-computer-language", {languageID:languageID} );
34
	}
35
}]);
36