From 59c6b152acd231b388342bb2867d07fe056b9623 Mon Sep 17 00:00:00 2001 From: WrinklyNinja Date: Tue, 2 Sep 2014 17:37:04 +0100 Subject: [PATCH] Removed console.log from script.js Fixes #282. --- resources/report/script.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/resources/report/script.js b/resources/report/script.js index 37cc2ca0..2e1a82ba 100644 --- a/resources/report/script.js +++ b/resources/report/script.js @@ -219,7 +219,6 @@ function processURLParams() { var pos = document.URL.indexOf("?data="); if (pos != -1) { var datapath = 'file:///' + document.URL.substring(pos+6); - console.log(datapath); require([datapath], function(){ var totalMessageNo = 0; var warnMessageNo = 0; @@ -337,4 +336,4 @@ function processURLParams() { }); } } -processURLParams(); \ No newline at end of file +processURLParams();