Fix repubblica.it after website update

This commit is contained in:
Davide Saurino 2019-01-25 16:29:06 +01:00
parent 06190853de
commit 9c81c87a93

View file

@ -35,9 +35,13 @@ if (window.location.href.indexOf("bizjournals.com") !== -1) {
}
if (location.href.includes("/ws/detail/")) {
const paywall = document.querySelector('.paywall[amp-access-hide]');
const paywall = document.querySelector('.paywall[subscriptions-section="content"]');
if (paywall) {
paywall.removeAttribute('amp-access-hide');
paywall.removeAttribute('subscriptions-section');
const preview = document.querySelector('div[subscriptions-section="content-not-granted"]');
if (preview) {
preview.remove();
}
}
}
}