unblur main image

This commit is contained in:
Gianni Carafa
2023-11-09 12:09:09 +01:00
parent 6f4a2daeca
commit d3c995df34

View File

@@ -142,5 +142,7 @@
paywall.forEach(el => { el.remove(); }); paywall.forEach(el => { el.remove(); });
const images = document.querySelectorAll('img'); const images = document.querySelectorAll('img');
images.forEach(image => { image.parentElement.style.filter = ''; }); images.forEach(image => { image.parentElement.style.filter = ''; });
const headimage = document.querySelectorAll('div .aspect-custom');
headimage.forEach(image => { image.style.filter = ''; });
}); });
</script> </script>