Release note for Id83eda95
[mediawiki.git] / resources / src / mediawiki / mediawiki.checkboxtoggle.js
bloba2386b353f34e39d61990e9b9396df3d8e0cb703
1 /*!
2 * Allows users to perform all / none / invert operations on a list of
3 * checkboxes on the page.
5 * @licence GNU GPL v2+
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, $ ) {
13 'use strict';
15 var $checkboxes = $( 'li input[type=checkbox]' );
17 function selectAll( check ) {
18 $checkboxes.prop( 'checked', check );
21 $( '.mw-checkbox-all' ).click( function ( e ) {
22 selectAll( true );
23 e.preventDefault();
24 } );
25 $( '.mw-checkbox-none' ).click( function ( e ) {
26 selectAll( false );
27 e.preventDefault();
28 } );
29 $( '.mw-checkbox-invert' ).click( function ( e ) {
30 $checkboxes.each( function () {
31 $( this ).prop( 'checked', !$( this ).is( ':checked' ) );
32 } );
33 e.preventDefault();
34 } );
36 }( mediaWiki, jQuery ) );