From version 1.1
edited by Jeffrey McDonald
on 2024/08/09 18:59
Change comment: Install extension [org.xwiki.platform:xwiki-platform-distribution-flavor-common/16.6.0]
To version 2.1
edited by Jeffrey McDonald
on 2024/08/09 19:25
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,10 @@
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);
Name
... ... @@ -1,0 +1,1 @@
1 +external_links