1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-06-16 10:29:54 +00:00

Remove debugging code

This commit is contained in:
Jermolene 2015-02-09 19:28:48 +00:00
parent 2585f8932c
commit 0c4fe6b602

View File

@ -20,7 +20,6 @@ exports.params = [
exports.run = function(cond, then, elze) {
then = then || "";
elze = elze || "";
console.log('Condition:', cond);
return cond ? then : elze;
};