mirror of
https://github.com/Mibew/mibew.git
synced 2025-03-23 02:21:23 +03:00
Fix indent in JS app
This commit is contained in:
parent
d5130ed655
commit
cb3bd91b76
@ -461,12 +461,11 @@ MibewAPIExecutionContext.prototype.getArgumentsList = function(functionObject) {
|
|||||||
referenceTo = argumentsList[variableName];
|
referenceTo = argumentsList[variableName];
|
||||||
|
|
||||||
// Check target value
|
// Check target value
|
||||||
if (typeof this.functionsResults[funcNum - 1][referenceTo] ==
|
if (typeof this.functionsResults[funcNum - 1][referenceTo] == "undefined") {
|
||||||
"undefined") {
|
throw new Error(
|
||||||
throw new Error(
|
"Wrong reference in '" + functionObject['function'] +
|
||||||
"Wrong reference in '" + functionObject['function'] +
|
"' function. There is no '" + referenceTo +
|
||||||
"' function. There is no '" + referenceTo +
|
"' argument in #" + funcNum + " function results"
|
||||||
"' argument in #" + funcNum + " function results"
|
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -378,7 +378,7 @@ var Mibew = Mibew || {};
|
|||||||
|
|
||||||
var invitationdiv = document.getElementById("mibew-invitation");
|
var invitationdiv = document.getElementById("mibew-invitation");
|
||||||
if (invitationdiv) {
|
if (invitationdiv) {
|
||||||
invitationdiv.innerHTML = popuptext;
|
invitationdiv.innerHTML = popuptext;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user