1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-07-04 11:13:15 +00:00

Removed extraneous debugging log

This commit is contained in:
Jeremy Ruston 2012-01-30 20:04:20 +00:00
parent b0fc3d4668
commit 350ad5bf3b

View File

@ -33,7 +33,6 @@ var JSONParseTree = function(tree) {
};
JSONParseTree.prototype.compile = function(type) {
console.log("(function (tiddler,store,utils) {var output=[]; utils.renderObject(output,'" + type + "'," + JSON.stringify(this.tree) + ",[]);return output.join('');})");
return new JSONRenderer("(function (tiddler,store,utils) {var output=[]; utils.renderObject(output,'" + type + "'," + JSON.stringify(this.tree) + ",[]);return output.join('');})");
};