From e32ab0a52775b083b7062d90e99bcb658bb01bb4 Mon Sep 17 00:00:00 2001 From: Alan Johnson Date: Thu, 16 Sep 2010 08:14:07 -0400 Subject: [PATCH] Really need to write a pre-commit checker thingy that alerts me if console.log is anywhere in the code. --- lib/handlebars.js | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/handlebars.js b/lib/handlebars.js index 4b8cf78a..2d3b97f2 100644 --- a/lib/handlebars.js +++ b/lib/handlebars.js @@ -172,7 +172,6 @@ var Handlebars = { out = out + lookup.call(context, arg, fn); } else if (typeof lookup != 'undefined') { - console.log(fn); out = out + Handlebars.helperMissing.call(arg, lookup, fn); }