mirror of
https://github.com/tim-krehan/shopping-list.git
synced 2024-11-23 22:30:41 +01:00
gerg
This commit is contained in:
parent
ed155f7c29
commit
f075315026
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);
|
console.log(`${match} test123`);
|
||||||
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