Fix right click on images in lightbox, update lightbox

This commit is contained in:
simon987 2024-04-03 14:24:54 -04:00
parent f99ea74e3f
commit 6423643e24
2 changed files with 11 additions and 0 deletions

Binary file not shown.

View File

@ -77,6 +77,17 @@ export default {
return listener(e);
}
};
document.onpointerdown = (e) => {
if (e.button === 2) {
const isLightboxOpen = this.$refs.lightbox === undefined || this.$refs.lightbox.$el.tagName === undefined;
if (isLightboxOpen) {
e.preventDefault();
return false;
}
}
}
},
methods: {
keyDownListener(e) {