]> BookStack Code Mirror - hacks/blob - content/force-page-links-new-tab/head.html
Initial copy of content from site repo
[hacks] / content / force-page-links-new-tab / head.html
1 <script>
2 document.addEventListener('DOMContentLoaded', function() {
3     const links = document.querySelectorAll('.page-content a');
4     for (const link of links) {
5         links[i].target = '_blank';
6     }
7 });
8 </script>