Fix loadModel

This commit is contained in:
2024-04-03 20:03:46 -04:00
parent fc06b3e378
commit 59bc418a95
2 changed files with 3 additions and 11 deletions

View File

@@ -78,16 +78,6 @@ export default {
}
};
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) {