Getting rid of some debug output.

This commit is contained in:
Alan Johnson
2010-10-13 16:42:44 -04:00
parent 1d72f1bea4
commit 198fa4b3c3
+1 -2
View File
@@ -4,8 +4,7 @@ var Handlebars = {
compile: function(string) {
if (Handlebars.compilerCache[string] == null) {
var fnBody = Handlebars.compileFunctionBody(string);
var fn = new Function("context", "fallback", "Handlebars", fnBody);
console.log(fn);
var fn = new Function("context", "fallback", "Handlebars", fnBody);
Handlebars.compilerCache[string] =
function(context, fallback) { return fn(context, fallback, Handlebars); };
}