Fix-update The Hindu

This commit is contained in:
magnolia1234 2020-07-09 20:53:36 +02:00
parent 2ee50f7b63
commit 0527749e5a
2 changed files with 3 additions and 1 deletions

View file

@ -62,6 +62,7 @@ var allow_cookies = [
'the-american-interest.com', 'the-american-interest.com',
'theathletic.co.uk', 'theathletic.co.uk',
'theathletic.com', 'theathletic.com',
'thehindu.com',
'themarker.com', 'themarker.com',
'trouw.nl', 'trouw.nl',
'volkskrant.nl', 'volkskrant.nl',

View file

@ -227,9 +227,10 @@ else if (matchDomain('ft.com')) {
else if (matchDomain("thehindu.com")) { else if (matchDomain("thehindu.com")) {
document.addEventListener('DOMContentLoaded', () => { document.addEventListener('DOMContentLoaded', () => {
let counter = document.querySelector('#test');
let co_banner = document.querySelector('.co-banner'); let co_banner = document.querySelector('.co-banner');
let support = document.querySelector('div.support-jlm'); let support = document.querySelector('div.support-jlm');
removeDOMElement(co_banner, support); removeDOMElement(counter, co_banner, support);
}); });
} }