User:Taavi/ToggleReferences.js

From Wikipedia, the free encyclopedia
Note: After saving, you have to bypass your browser's cache to see the changes. Google Chrome, Firefox, Microsoft Edge and Safari: Hold down the ⇧ Shift key and click the Reload toolbar button. For details and instructions about other browsers, see Wikipedia:Bypass your cache.
/**
 * Really simple user script to allow toggling visibility of references on a said page.
 * Made by [[User:Majavah]] @ en.wikipedia.org
 */
mw.loader.using(['mediawiki.util'], function () {
    mw.util.addPortletLink('p-cactions', 'javascript:void(0);', 'Toggle references', 'us-majavah-toggle-references');
	$('#us-majavah-toggle-references').click(function() {
	    $('sup.reference').toggle();
	});
});