Fix indent in JS app

This commit is contained in:
Dmitriy Simushev 2016-06-03 13:34:55 +00:00
parent d5130ed655
commit cb3bd91b76
2 changed files with 6 additions and 7 deletions

View File

@ -461,8 +461,7 @@ 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 +