Removed unnecessary semicolon, which is needed to pass JSHint for compiled code

This commit is contained in:
Andrey Lushchick
2012-12-27 14:10:23 +02:00
parent 28f377d169
commit e9fe73d7ab
+1 -1
View File
@@ -805,7 +805,7 @@ Handlebars.JavaScriptCompiler = function() {};
}
this.context.aliases.self = "this";
this.pushStack("self.invokePartial(" + params.join(", ") + ");");
this.pushStack("self.invokePartial(" + params.join(", ") + ")");
},
// [assignToHash]