Skip to content
Snippets Groups Projects
Commit 2775ec895c0e authored by Elodie Thiéblin's avatar Elodie Thiéblin
Browse files

fix: missing var declarations raised errors

parent 4cb685658f6f
No related branches found
No related tags found
No related merge requests found
......@@ -107,6 +107,7 @@
objectVarIndex = ArrayLiIndex[index] + 1 ;
}
var subjectVariable = "";
// name start and end variables
// dashes should be replaced
if (subjectVariableIndex == 0) {
......@@ -269,7 +270,7 @@
};
// add additionnal prefixes
for (key in this.additionnalPrefixes) {
for (var key in this.additionnalPrefixes) {
jsonQuery.prefixes[key] = this.additionnalPrefixes[key];
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment