2 * Allows users to perform all / none / invert operations on a list of
3 * checkboxes on the page.
6 * @author Luke Faraone <luke at faraone dot cc>
8 * Based on ext.nuke.js from https://www.mediawiki.org/wiki/Extension:Nuke by
9 * Jeroen De Dauw <jeroendedauw at gmail dot com>
12 ( function ( mw
, $ ) {
15 var $checkboxes
= $( 'li input[type=checkbox]' );
17 function selectAll( check
) {
18 $checkboxes
.prop( 'checked', check
);
21 $( '.mw-checkbox-all' ).click( function ( e
) {
25 $( '.mw-checkbox-none' ).click( function ( e
) {
29 $( '.mw-checkbox-invert' ).click( function ( e
) {
30 $checkboxes
.each( function () {
31 $( this ).prop( 'checked', !$( this ).is( ':checked' ) );
36 }( mediaWiki
, jQuery
) );