mirror of
https://github.com/tim-krehan/shopping-list.git
synced 2024-11-23 22:30:41 +01:00
log
This commit is contained in:
parent
f075315026
commit
a646b5c51b
1 changed files with 1 additions and 1 deletions
|
@ -11,7 +11,7 @@ function highlightNewEntry(){
|
||||||
var cookies = document.cookie;
|
var cookies = document.cookie;
|
||||||
var cookieRegExp = new RegExp(/;?\s+newItem=(\d+)/g);
|
var cookieRegExp = new RegExp(/;?\s+newItem=(\d+)/g);
|
||||||
var match = cookieRegExp.exec(cookies);
|
var match = cookieRegExp.exec(cookies);
|
||||||
console.log(`${match} test123`);
|
console.log(cookieRegExp);
|
||||||
if(match!=null){
|
if(match!=null){
|
||||||
var newID = match[1];
|
var newID = match[1];
|
||||||
var checkBox = $(`[data-id='${newID}']`);
|
var checkBox = $(`[data-id='${newID}']`);
|
||||||
|
|
Loading…
Reference in a new issue