From a646b5c51b616c171f8865367bccc057c18c6eca Mon Sep 17 00:00:00 2001 From: Tim Krehan Date: Sun, 26 May 2019 17:16:33 +0200 Subject: [PATCH] log --- js/list.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/list.js b/js/list.js index 11e4d9a..2461884 100644 --- a/js/list.js +++ b/js/list.js @@ -11,7 +11,7 @@ function highlightNewEntry(){ var cookies = document.cookie; var cookieRegExp = new RegExp(/;?\s+newItem=(\d+)/g); var match = cookieRegExp.exec(cookies); - console.log(`${match} test123`); + console.log(cookieRegExp); if(match!=null){ var newID = match[1]; var checkBox = $(`[data-id='${newID}']`);