From 0c4fe6b602ccb74d2bf3d1d46f8e2ea07b87d966 Mon Sep 17 00:00:00 2001 From: Jermolene Date: Mon, 9 Feb 2015 19:28:48 +0000 Subject: [PATCH] Remove debugging code --- editions/tw5.com/tiddlers/macros/if-macro.js | 1 - 1 file changed, 1 deletion(-) diff --git a/editions/tw5.com/tiddlers/macros/if-macro.js b/editions/tw5.com/tiddlers/macros/if-macro.js index b91f2ad8a..6c902ed65 100644 --- a/editions/tw5.com/tiddlers/macros/if-macro.js +++ b/editions/tw5.com/tiddlers/macros/if-macro.js @@ -20,7 +20,6 @@ exports.params = [ exports.run = function(cond, then, elze) { then = then || ""; elze = elze || ""; -console.log('Condition:', cond); return cond ? then : elze; };