mirror of
https://github.com/YunoHost-Apps/mediawiki_ynh.git
synced 2024-09-03 19:46:05 +02:00
25 lines
569 B
JavaScript
25 lines
569 B
JavaScript
/**
|
|
* 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 ) {
|
|
'use strict';
|
|
|
|
$( 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 );
|