Strip unnecessary whitespace in template output

This commit is contained in:
kpdecker
2014-12-27 12:58:28 -06:00
parent f147050513
commit b474630c7d
@@ -263,7 +263,7 @@ JavaScriptCompiler.prototype = {
}
if (varDeclarations) {
this.source.prepend('var ' + varDeclarations.substring(2) + (appendFirst ? '' : ';\n '));
this.source.prepend('var ' + varDeclarations.substring(2) + (appendFirst ? '' : ';\n'));
}
return this.source.merge();