Getting rid of some debug output.
This commit is contained in:
+1
-2
@@ -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); };
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user