From 78e6a1a127eba42c43e2418726ddd64862273108 Mon Sep 17 00:00:00 2001 From: prndev <prndev@users.noreply.github.com> Date: Sat, 6 Jan 2018 15:25:05 +0100 Subject: [PATCH] Stop cluttering browser console. I cannot see where this unconditional log would be helpful. It annoys me during debugging. --- src/js/utilJS.tw | 1 - 1 file changed, 1 deletion(-) diff --git a/src/js/utilJS.tw b/src/js/utilJS.tw index 60e1b6694f3..e3a908dc921 100644 --- a/src/js/utilJS.tw +++ b/src/js/utilJS.tw @@ -380,7 +380,6 @@ window.Categorizer.prototype.cat = function(val, def) { window.commaNum = function(s) { if(!s) { return 0; } - console.log(window); if(State.variables.formatNumbers != 1) { return s; } return s.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ","); } -- GitLab