|
|
| Рядок 69: |
Рядок 69: |
| document.getElementById("consent-banner").style.display = "none"; | | document.getElementById("consent-banner").style.display = "none"; |
| } | | } |
| });
| |
|
| |
| mw.loader.using('mobile.startup', function () {
| |
| mw.hook('mobile.sectionToggle.loaded').add(function () {
| |
| // Всі розділи готові — знімаємо collapse і вставляємо рекламу
| |
| document.querySelectorAll('section.collapsed').forEach(function (section) {
| |
| section.classList.remove('collapsed');
| |
| section.classList.add('expanded');
| |
|
| |
| const content = section.querySelector('.content');
| |
| if (content) {
| |
| content.style.display = 'block';
| |
| }
| |
|
| |
| // Додаємо рекламний блок
| |
| const adDiv = document.createElement('div');
| |
| adDiv.className = 'ad-block';
| |
| adDiv.style = 'margin: 20px 0; text-align: center;';
| |
| adDiv.innerHTML = '<ins class="adsbygoogle" style="display:block" data-ad-client="ca‑pub‑9946719691242357" data-ad-format="auto"></ins><script>(adsbygoogle = window.adsbygoogle || []).push({});</script>';
| |
|
| |
| section.after(adDiv);
| |
| });
| |
| });
| |
| }); | | }); |