1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-05 10:49:36 +02:00
Oinktube/plugin/CookieAlert/cookiealert-standalone.js

19 lines
No EOL
493 B
JavaScript

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