User:Mr.Z-man/hideClosedAFD.js

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.
// For description, see [[User:Mr.Z-man/hideClosedAFD]]

mw.loader.using( ['mediawiki.util'], function() {
	
	if ((mw.config.get('wgPageName').indexOf('Wikipedia:Articles_for_deletion/Log/') != -1) && (mw.config.get('wgAction') == 'view')) {
		$(document).ready( function () {
			mw.util.addPortletLink( 'p-cactions', '#', 'Hide closed', 'ca-hideClosed', "Hide closed discussions" );
			mw.util.addPortletLink( 'p-cactions', '#', 'Show closed', 'ca-showClosed', "Show closed discussions" );
			$('#ca-showClosed').hide();
			
			$('#ca-hideClosed').on('click', function() {
				$(".boilerplate.afd.xfd-closed").hide();
				$('#ca-showClosed').show();
				$('#ca-hideClosed').hide();
				return false;
			});
			
			$('#ca-showClosed').on('click', function() {
				$(".boilerplate.afd.xfd-closed").show();
				$('#ca-showClosed').hide();
				$('#ca-hideClosed').show();
				return false;
			});
			
		} );
	}	
});
Retrieved from "https://en.wikipedia.org/w/index.php?title=User:Mr.Z-man/hideClosedAFD.js&oldid=577452441"