Adam 2019-02-02 14:06:15 -08:00
commit 7e50f6dc6a
1 changed files with 6 additions and 2 deletions

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();
}
}
}
}