Merge branch 'main' into cours
Some checks are pending
ci/woodpecker/push/publish Pipeline is pending

This commit is contained in:
Mylloon 2024-01-26 17:17:21 +01:00
commit 1ed7731b21
Signed by: Anri
GPG key ID: A82D63DFF8D1317F
2 changed files with 14 additions and 3 deletions

View file

@ -1,5 +1,9 @@
{{#metadata}} {{#info}} {{#portfolio}} {{#link}}
<li role="button" onmouseup="openLink('{{link}}');">
<li
role="button"
onmousedown="disableScroll()"
onmouseup="openLink('{{link}}');"
>
{{>portfolio/project.html}}
</li>
{{/link}} {{^link}}

View file

@ -42,6 +42,13 @@
})
);
/* Middle click */
const disableScroll = () => {
if (event.button === 1) {
event.preventDefault();
}
};
/* Open cards link */
const openLink = (url) => {
const backgroundtab = () =>
@ -62,12 +69,12 @@
window.open(url, "_blank", "noreferrer");
}
break;
case 1:
/* Middle click */
event.preventDefault();
backgroundtab();
break;
default:
break;
}