| <div id="bottomAd" style="font-size: 2px;"> </div> |
| <script type="text/javascript"> |
| window.addEventListener('DOMContentLoaded', function () { |
| if ('undefined' === (typeof hasBlockedContent) || hasBlockedContent !== false) { |
| |
| (function () { |
| |
| var body = document.getElementsByTagName('body'); |
| |
| if (!body || !body[0]) { |
| return; |
| } |
| |
| var bottomAd = document.getElementById('bottomAd'); |
| var wasMostLikelyCausedByAdblock = false; |
| |
| if (!bottomAd) { |
| wasMostLikelyCausedByAdblock = true; |
| } else if (bottomAd.style && bottomAd.style.display === 'none') { |
| wasMostLikelyCausedByAdblock = true; |
| } else if ('undefined' !== (typeof bottomAd.clientHeight) && bottomAd.clientHeight === 0) { |
| wasMostLikelyCausedByAdblock = true; |
| } |
| |
| if (wasMostLikelyCausedByAdblock) { |
| var shouldGetHiddenElement = document.getElementById("should-get-hidden"); |
| var warning = document.createElement('p'); |
| warning.innerText = '{{ 'CoreHome_AdblockIsMaybeUsed'|translate|e('js') }}'; |
| |
| var warningBox = document.createElement('div'); |
| warningBox.style.border = '3px solid red'; |
| warningBox.style.padding = '10px'; |
| warningBox.style.margin = '10px 20px'; |
| warningBox.style.textAlign = 'center'; |
| warningBox.style.display = 'flex'; |
| warningBox.style.justifyContent = 'center'; |
| warningBox.style.alignItems = 'center'; |
| warningBox.style.position = 'fixed'; |
| warningBox.style.top = '0'; |
| warningBox.style.left = '0'; |
| warningBox.style.right = '0'; |
| warningBox.style.backgroundColor = 'white'; |
| warningBox.style.zIndex = '1000'; |
| |
| warning.style.color = 'red'; |
| warning.style.fontWeight = 'bold'; |
| warning.style.fontSize = '20px'; |
| |
| warningBox.appendChild(warning); |
| |
| if (shouldGetHiddenElement) { |
| shouldGetHiddenElement.appendChild(warningBox); |
| } else { |
| body[0].insertBefore(warningBox, body[0].firstChild); |
| } |
| } |
| })(); |
| } |
| }); |
| </script> |