summaryrefslogtreecommitdiff
path: root/extensions/Nuke/ext.nuke.js
blob: 04677a68b6f0a20605323749c70d23f7a858c9e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/**
 * JavaScript 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 );