summaryrefslogtreecommitdiff
path: root/extensions/Nuke/ext.nuke.js
blob: c32609468f2a3f70c70ba37cdb5fbe060f6fd414 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/**
 * JavasSript for the Nuke MediaWiki extension.
 * @see https://www.mediawiki.org/wiki/Extension:Nuke
 *
 * @licence GNU GPL v2 or later
 * @author Jeroen De Dauw <jeroendedauw at gmail dot com>
 */

(function( $, mw ) { $( document ).ready( function() {
	
	function selectPages( check ) {
		$( 'input[type=checkbox]' ).prop( 'checked', check )
	}
	
	$( '#toggleall' ).click( function(){ selectPages( true ); } );
	$( '#togglenone' ).click( function(){ selectPages( false ); } );
	
} ); })( window.jQuery, window.mediaWiki );