- WordPress core y plugins - Tema Twenty Twenty-Four configurado - Plugin allow-unfiltered-html.php simplificado - .gitignore configurado para excluir wp-config.php y uploads 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
63 lines
1.7 KiB
JavaScript
Executable File
63 lines
1.7 KiB
JavaScript
Executable File
/**
|
|
* Check if an ad blocker is enabled.
|
|
*
|
|
* @param function callback A callback function that is executed after the check has been done.
|
|
* The 'isEnabled' (bool) variable is passed as the callback's first argument.
|
|
*/
|
|
window.advanced_ads_check_adblocker = (function (callback) {
|
|
let pendingCallbacks = [];
|
|
let isEnabled = null;
|
|
|
|
function RAF(RAF_callback) {
|
|
const fn =
|
|
window.requestAnimationFrame ||
|
|
window.mozRequestAnimationFrame ||
|
|
window.webkitRequestAnimationFrame ||
|
|
function (RAF_callback) {
|
|
return setTimeout(RAF_callback, 16);
|
|
};
|
|
|
|
fn.call(window, RAF_callback);
|
|
}
|
|
|
|
RAF(function () {
|
|
// Create a bait.
|
|
const ad = document.createElement('div');
|
|
ad.innerHTML = ' ';
|
|
ad.setAttribute('class', 'ad_unit ad-unit text-ad text_ad pub_300x250');
|
|
ad.setAttribute(
|
|
'style',
|
|
'width: 1px !important; height: 1px !important; position: absolute !important; left: 0px !important; top: 0px !important; overflow: hidden !important;'
|
|
);
|
|
document.body.appendChild(ad);
|
|
|
|
RAF(function () {
|
|
const styles = window.getComputedStyle?.(ad);
|
|
const mozBinding = styles?.getPropertyValue('-moz-binding');
|
|
|
|
isEnabled =
|
|
(styles && styles.getPropertyValue('display') === 'none') ||
|
|
(typeof mozBinding === 'string' &&
|
|
mozBinding.indexOf('about:') !== -1);
|
|
|
|
// Call pending callbacks.
|
|
for (var i = 0, length = pendingCallbacks.length; i < length; i++) {
|
|
pendingCallbacks[i](isEnabled);
|
|
}
|
|
pendingCallbacks = [];
|
|
});
|
|
});
|
|
|
|
return function (callback) {
|
|
if ('undefined' === typeof advanced_ads_adblocker_test) {
|
|
isEnabled = true;
|
|
}
|
|
if (isEnabled === null) {
|
|
pendingCallbacks.push(callback);
|
|
return;
|
|
}
|
|
// Run the callback immediately
|
|
callback(isEnabled);
|
|
};
|
|
})();
|