1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-03 09:49:28 +02:00
Oinktube/plugin/CookieAlert/cookiealert-standalone.js
Daniel Neto 51ceea9e6d Update
2023-12-18 11:49:44 -03:00

20 lines
No EOL
527 B
JavaScript

$(document).ready(function () {
startCookieAlert();
});
function startCookieAlert(){
if(typeof getCookie == 'undefined'){
setTimeout(function(){
startCookieAlert();
},1000);
return false;
}
if (!getCookie("acceptCookies") && !inIframe()) {
$(".cookiealert").show();
$(".cookiealert").addClass("show");
}
$(".acceptcookies").on('click', function(){
setCookie("acceptCookies", true, 60);
$(".cookiealert").removeClass("show");
});
}