From c1f9b1f7b1b77776192048005dcc66dcf3df2bfb Mon Sep 17 00:00:00 2001 From: Pierre Schmitz Date: Sat, 27 Dec 2014 15:41:37 +0100 Subject: Update to MediaWiki 1.24.1 --- .../mediawiki.special.recentchanges.js | 34 ---------------------- 1 file changed, 34 deletions(-) delete mode 100644 resources/mediawiki.special/mediawiki.special.recentchanges.js (limited to 'resources/mediawiki.special/mediawiki.special.recentchanges.js') diff --git a/resources/mediawiki.special/mediawiki.special.recentchanges.js b/resources/mediawiki.special/mediawiki.special.recentchanges.js deleted file mode 100644 index 79d793af..00000000 --- a/resources/mediawiki.special/mediawiki.special.recentchanges.js +++ /dev/null @@ -1,34 +0,0 @@ -/** - * JavaScript for Special:RecentChanges - */ -( function ( mw, $ ) { - var rc, $checkboxes, $select; - - rc = { - /** - * Handler to disable/enable the namespace selector checkboxes when the - * special 'all' namespace is selected/unselected respectively. - */ - updateCheckboxes: function () { - // The option element for the 'all' namespace has an empty value - var isAllNS = $select.val() === ''; - - // Iterates over checkboxes and propagate the selected option - $checkboxes.prop( 'disabled', isAllNS ); - }, - - init: function () { - $select = $( '#namespace' ); - $checkboxes = $( '#nsassociated, #nsinvert' ); - - // Bind to change event, and trigger once to set the initial state of the checkboxes. - rc.updateCheckboxes(); - $select.change( rc.updateCheckboxes ); - } - }; - - $( rc.init ); - - mw.special.recentchanges = rc; - -}( mediaWiki, jQuery ) ); -- cgit v1.2.3-54-g00ecf