mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-03 09:49:28 +02:00
20 lines
No EOL
527 B
JavaScript
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");
|
|
});
|
|
} |