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 ( c4a44c...98b464 )
by Keith
19:51
created

js/load_js_files.js   A

Complexity

Total Complexity 2
Complexity/F 1

Size

Lines of Code 16
Function Count 2

Duplication

Duplicated Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 11
dl 0
loc 16
rs 10
c 0
b 0
f 0
wmc 2
mnd 0
bc 0
fnc 2
bpm 0
cpm 1
noi 0

1 Function

Rating   Name   Duplication   Size   Complexity  
A load_js_files.js ➔ loadJsFiles 0 10 2
1
// loading other javascript files in synchronize
2
var siteRoot = webRoot + "/";
3
var loadJsList = [];
4
loadJsList.push(siteRoot+"js/common.js");
5
loadJsList.push(siteRoot+"js/date.matt.kruse.js");
6
7
loadJsFiles(loadJsList);
8
function loadJsFiles(loadJsList){
9
	loadJsList.forEach(function(element) {
10
        // console.dir("dynamic load:"+element)
11
		$.ajax({
12
			async: false,
13
			url: element,
14
			dataType: "script"
15
		});
16
	});
17
}