@[email protected] to Mildly InfuriatingEnglish • 1 day agoFirestone email unsubscribe page isn't actually clickable so you can't unsubscribesh.itjust.worksimagemessage-square17fedilinkarrow-up1220arrow-down13file-text
arrow-up1217arrow-down1imageFirestone email unsubscribe page isn't actually clickable so you can't unsubscribesh.itjust.works@[email protected] to Mildly InfuriatingEnglish • 1 day agomessage-square17fedilinkfile-text
minus-square@[email protected]linkfedilinkEnglish3•17 hours agosounds like contentEditable got triggered on one of the elements on the page. if you want to try and get around this before they fix it you can press F12 and paste this into your console: document.querySelectorAll("[contentEditable]").forEach(x=>x.contentEditable=false);
sounds like
contentEditable
got triggered on one of the elements on the page. if you want to try and get around this before they fix it you can press F12 and paste this into your console:document.querySelectorAll("[contentEditable]").forEach(x=>x.contentEditable=false);