document.addEventListener('DOMContentLoaded', () => { if(Cookies.get("ui-tnc-agreed") !== "true") { $("BODY").addClass("censored"); $("BODY").append("
"); $("BODY").append(""+ "
"+ "

For legal reasons, we need to point out that:"+ "

A) this site contains material not suitable for minors"+ "
B) cookies may be used"+ "

Click here if you're an adult, and you're ok with that"+ "

"+ ""); } }); function tnc_agree() { Cookies.set("ui-tnc-agreed", "true", {path: '/', expires: 365}); $("BODY").removeClass("censored"); $(".tnc_bg").hide(); $(".tnc").hide(); } function image_hash_ban(id) { var reason = prompt("WHY?", "DNP"); if(reason) { $.post( "/image_hash_ban/add", { "image_id": id, "reason": reason, }, function() { $("#thumb_" + id).parent().parent().hide(); } ); } }