Jump to content

User:Armbrust/hideClosedRFD.js

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Armbrust (talk | contribs) at 20:10, 24 June 2014 (save). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)
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.
mw.loader.using( ['mediawiki.util'], function() {
 
	if ((mw.config.get('wgPageName').indexOf('Wikipedia:Redirects_for_discussion') != -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 mfd").hide();
				$('#ca-showClosed').show();
				$('#ca-hideClosed').hide();
				return false;
			});
 
			$('#ca-showClosed').on('click', function() {
				$(".boilerplate mfd").show();
				$('#ca-showClosed').hide();
				$('#ca-hideClosed').show();
				return false;
			});
 
		} );
	}	
});