modified: index.html

This commit is contained in:
DarkShyMW
2023-03-13 02:58:02 +03:00
parent adf484f165
commit 4beda5872d

View File

@@ -110,11 +110,11 @@
<script> <script>
// We create the function that will be executed if AdBlock is detected // We create the function that will be executed if AdBlock is detected
var adBlockDetected = function() { var adBlockDetected = function() {
$('*').style.visibility='hidden' $('*').hide();
} }
// We create the function that will be executed if AdBlock is NOT detected // We create the function that will be executed if AdBlock is NOT detected
var adBlockUndetected = function() { var adBlockUndetected = function() {
$('*').style.visibility='visible' $('*').show();
} }
// We observe if the variable "fuckAdBlock" exists // We observe if the variable "fuckAdBlock" exists
if(typeof FuckAdBlock === 'undefined') { if(typeof FuckAdBlock === 'undefined') {