deploy: ac2f5d56a97822e02ad28100510bfc6925dc6b07

This commit is contained in:
SukkaBot
2023-09-28 16:39:53 +00:00
parent ec6d1781a0
commit d1457e4d9c
21 changed files with 430 additions and 347 deletions

View File

@@ -1,9 +1,10 @@
(function () {
'use strict';
const init = () => {
window.adsbygoogle = {
loaded: true,
push: function () {
push() {
}
};
const phs = document.querySelectorAll('.adsbygoogle');
@@ -21,11 +22,11 @@
}
};
if (
document.querySelectorAll('.adsbygoogle').length === 0 &&
document.readyState === 'loading'
document.querySelectorAll('.adsbygoogle').length === 0
&& document.readyState === 'loading'
) {
window.addEventListener('DOMContentLoaded', init, { once: true });
} else {
init();
}
})();
}());