Skip to content

Commit f2a584d

Browse files
Change javascript variable name.
1 parent 86761f0 commit f2a584d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

resources/Constants/utils.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ function listObject(object){
2121
}
2222

2323
// Read text from file and store it into the "text" property of the "ele" object.
24-
function readTextFile(path, ele){
24+
function readTextFile(path, elem){
2525
var req = new XMLHttpRequest;
2626
req.onreadystatechange = function () {
2727
if(req.readyState === 4){
28-
ele.text += req.responseText;
28+
elem.text += req.responseText;
2929
}
3030
}
3131
req.open("GET", path);

0 commit comments

Comments
 (0)