Changes for page Home

Last modified by Administrateur local on 2026/03/01 15:03

From version 14.1
edited by Administrateur local
on 2026/02/22 18:40
Change comment: There is no comment for this version
To version 15.1
edited by Administrateur local
on 2026/02/23 10:27
Change comment: There is no comment for this version

Summary

Details

XWiki.JavaScriptExtension[0]
Caching policy
... ... @@ -1,0 +1,1 @@
1 +long
Code
... ... @@ -1,0 +1,11 @@
1 +function fixExternalLinks() {
2 + var nodes = document.querySelectorAll('.wikiexternallink a');
3 + for(var i=0; i< nodes.length; i++){
4 + var link = nodes[i];
5 + if (link.hasAttribute('target') == false) {
6 + link.setAttribute('target', '_blank');
7 + }
8 + }
9 +}
10 +document.addEventListener("DOMContentLoaded", fixExternalLinks);
11 +
Name
... ... @@ -1,0 +1,1 @@
1 +Open external link in new tab
Use this extension
... ... @@ -1,0 +1,1 @@
1 +always

)