Got rid of erroneous log message.

This commit is contained in:
Alan Johnson
2010-09-11 09:37:54 -04:00
parent 0c3a1cf477
commit 6f35bf4e83
-1
View File
@@ -1,7 +1,6 @@
Handlebars = {
compile: function(string) {
var fnBody = Handlebars.compileFunctionBody(string);
console.log(fnBody);
return new Function("context", "fallback", fnBody);
},