From 6f35bf4e83a8db43c19be5a37758b2b4384b5377 Mon Sep 17 00:00:00 2001 From: Alan Johnson Date: Sat, 11 Sep 2010 09:37:54 -0400 Subject: [PATCH] Got rid of erroneous log message. --- lib/handlebars.js | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/handlebars.js b/lib/handlebars.js index 2c8dcbfa..03e8fea9 100644 --- a/lib/handlebars.js +++ b/lib/handlebars.js @@ -1,7 +1,6 @@ Handlebars = { compile: function(string) { var fnBody = Handlebars.compileFunctionBody(string); - console.log(fnBody); return new Function("context", "fallback", fnBody); },