MediaWiki:Gadget-gadgetLinks.js
After saving, you may need to bypass your browser's cache to see the changes. For further information, see Wikipedia:Bypass your cache.
- In most Windows and Linux browsers: Hold down Ctrl and press F5.
- In Safari: Hold down ⇧ Shift and click the Reload button.
- In Chrome and Firefox for Mac: Hold down both ⌘ Cmd+⇧ Shift and press R.
// Add gadget links to the gadgets that are being defined on [[MediaWiki:Gadgets-definition]]
$(function() {
function gadgetLink(page) {
return '<a href="/w/MediaWiki:Gadget-'+page+'" title="MediaWiki:Gadget-'+page+'">'+page+'</a>';
}
$('.page-MediaWiki_Gadgets-definition #bodyContent ul li').not('#toc li').each(function() {
var txt = this.innerHTML;
var links = txt.replace(/([a-zA-Z0-9-]+)(\[[^\]]+\]\|)(.*)/, function(match, name, options, filelist) {
var files = filelist.split('|');
files = files.map(function(file) { return gadgetLink(file); });
return gadgetLink(name) + options + files.join('|');
});
$(this).html(links);
});
});