From fc6716d117537aad56da70d9c6ad040102cb3380 Mon Sep 17 00:00:00 2001 From: Tim Krehan Date: Sun, 26 May 2019 17:19:08 +0200 Subject: [PATCH] fixed all ios issues (hopefully) --- js/list.js | 1 - 1 file changed, 1 deletion(-) diff --git a/js/list.js b/js/list.js index cd51fa7..d1ff10c 100644 --- a/js/list.js +++ b/js/list.js @@ -11,7 +11,6 @@ function highlightNewEntry(){ var cookies = document.cookie; var cookieRegExp = new RegExp(/[;]{0,1}\s{0,1}newItem=(\d+)/g); var match = cookieRegExp.exec(cookies); - console.log(cookies); if(match!=null){ var newID = match[1]; var checkBox = $(`[data-id='${newID}']`);