2021-01-11 20:10:32 +01:00
|
|
|
|
2021-04-12 18:36:20 +02:00
|
|
|
class cookieNotice extends HTMLElement{
|
|
|
|
constructor() {
|
|
|
|
super();
|
|
|
|
this.innerHTML = `
|
|
|
|
<div class="cookieinfo">
|
|
|
|
<div class="cookieinfo-close"> ✖
|
|
|
|
</div>
|
|
|
|
<span class="cookieinfo-text">
|
|
|
|
We use cookies to enhance your experience. By continuing to visit this site you agree to our use of cookies. <a class="cookieinfo-link" href="http://wikipedia.org/wiki/HTTP_cookie">More info</a>
|
|
|
|
</span>
|
|
|
|
</div>`;
|
|
|
|
|
|
|
|
let cookieInfo = document.querySelector(".cookieinfo");
|
|
|
|
if(cookieInfo != null) {
|
|
|
|
if (this.getCookie("cookieMessageHide") === "1") {
|
|
|
|
cookieInfo.style.display = "none";
|
|
|
|
} else {
|
|
|
|
cookieInfo.style.display = "block";
|
|
|
|
}
|
2021-01-11 20:10:32 +01:00
|
|
|
|
2021-04-12 18:36:20 +02:00
|
|
|
document.querySelector(".cookieinfo-close").onclick = function() {
|
|
|
|
console.log("close");
|
|
|
|
document.cookie = "cookieMessageHide=1";
|
|
|
|
cookieInfo.style.display = "none";
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2021-03-24 23:50:10 +01:00
|
|
|
|
|
|
|
}
|
2021-03-24 23:07:40 +01:00
|
|
|
|
2021-04-12 18:36:20 +02:00
|
|
|
getCookie(name){
|
|
|
|
var nameEQ = name + "=";
|
|
|
|
var ca = document.cookie.split(";");
|
|
|
|
for (var i=0; i < ca.length; i++) {
|
|
|
|
var c = ca[i];
|
|
|
|
while(c.charAt(0) === " ") c = c.substr(1, c.length);
|
|
|
|
if(c.indexOf(nameEQ) === 0) return c.substr(nameEQ.length, c.length)
|
|
|
|
}
|
|
|
|
return null
|
2021-03-24 23:50:10 +01:00
|
|
|
}
|
2021-04-12 18:36:20 +02:00
|
|
|
}
|
2021-03-24 23:50:10 +01:00
|
|
|
|
2021-04-12 18:36:20 +02:00
|
|
|
customElements.define("jl-cookie_notice", cookieNotice);
|