document.addEventListener('DOMContentLoaded', () => { if(Cookies.get("ui-tnc-agreed") !== "true" && window.location.href.indexOf("/wiki/") == -1) { $("BODY").addClass("censored"); $("BODY").append("
"); $("BODY").append(""+ "
"+ "

Cookies may be used. Please read our privacy policy for more information."+ "

By accepting to enter you agree to our rules and terms of service."+ "

Agree / Disagree"+ "

"+ ""); } }); 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(); } ); } }