Fix scrolling alt text using a mouse

Co-authored-by: BlankEclair <blankeclair@disroot.org>
This commit is contained in:
CenTdemeern1 2024-12-10 15:12:56 +01:00
parent ee01d5fbdf
commit 5cc77b64bf

View file

@ -195,6 +195,12 @@ onMounted(() => {
textBox.textContent = pswp.currSlide?.data.comment;
});
// `passive: true` is for Safari compatibility, apparently
const stopEvent = name => textBox.addEventListener(name, event => event.stopPropagation(), { passive: true });
stopEvent('wheel');
stopEvent('pointerdown');
stopEvent('pointercancel');
},
});
});