MediaWiki:Common.js: Difference between revisions
Appearance
No edit summary |
No edit summary |
||
Line 18: | Line 18: | ||
}); | }); | ||
jQuery.getScript('('#free_text').wikiEditor; | |||
Revision as of 23:59, 22 April 2024
document.addEventListener('DOMContentLoaded', function() {
console.log("Script running...");
var links = document.querySelectorAll('a[href*="https://ntldstats.com/tld/"]');
console.log("Links found: ", links.length);
links.forEach(function(link) {
console.log("Original href: ", link.href);
var url = new URL(link.href);
var paths = url.pathname.split('/');
var lastSegment = paths[paths.length - 1];
if (lastSegment.startsWith('.')) {
lastSegment = lastSegment.substring(1); // Remove the leading dot
paths[paths.length - 1] = lastSegment;
url.pathname = paths.join('/');
link.href = url.toString();
console.log("Modified href: ", link.href);
}
});
});
jQuery.getScript('('#free_text').wikiEditor;