Fixed up an errant console.log.

This commit is contained in:
Alan Johnson
2010-08-12 23:13:04 -04:00
parent ad6a53e277
commit 5bd5d4eed4
-1
View File
@@ -186,7 +186,6 @@ Handlebars.Compiler.prototype = {
addText: function() {
if(this.text) {
console.log("out = out + '" + Handlebars.escapeText(this.text) + "'; ");
this.fn = this.fn + "out = out + \"" + Handlebars.escapeText(this.text) + "\"; ";
this.fn = this.fn + this.newlines;
this.newlines = "";