Dan Brown 5b3033d7de
Fixed bad link in new tab code
Updated to module instead of using dom ready.
2023-05-13 16:15:32 +01:00

6 lines
No EOL
166 B
HTML

<script type="module">
const links = document.querySelectorAll('.page-content a');
for (const link of links) {
link.target = '_blank';
}
</script>