mirror of
https://github.com/Mibew/mibew.git
synced 2025-02-07 08:14:42 +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];
|
||||
|
||||
// Check target value
|
||||
if (typeof this.functionsResults[funcNum - 1][referenceTo] ==
|
||||
"undefined") {
|
||||
throw new Error(
|
||||
"Wrong reference in '" + functionObject['function'] +
|
||||
"' function. There is no '" + referenceTo +
|
||||
"' argument in #" + funcNum + " function results"
|
||||
if (typeof this.functionsResults[funcNum - 1][referenceTo] == "undefined") {
|
||||
throw new Error(
|
||||
"Wrong reference in '" + functionObject['function'] +
|
||||
"' function. There is no '" + referenceTo +
|
||||
"' argument in #" + funcNum + " function results"
|
||||
);
|
||||
}
|
||||
|
||||
|
@ -378,7 +378,7 @@ var Mibew = Mibew || {};
|
||||
|
||||
var invitationdiv = document.getElementById("mibew-invitation");
|
||||
if (invitationdiv) {
|
||||
invitationdiv.innerHTML = popuptext;
|
||||
invitationdiv.innerHTML = popuptext;
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user