mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Nuke
synced 2024-11-15 11:59:48 +00:00
f83cade885
Adds a basic .jshintrc based on the common settings from the coding conventions page and removes unused variable mw. Bug: 61616 Change-Id: I579f0528c3c57de46449457087f441c88229379b
26 lines
539 B
JavaScript
26 lines
539 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 ( $ ) {
|
|
'use strict';
|
|
|
|
$( document ).ready( function () {
|
|
|
|
function selectPages( check ) {
|
|
$( 'input[type=checkbox]' ).prop( 'checked', check );
|
|
}
|
|
|
|
$( '#toggleall' ).click( function () {
|
|
selectPages( true );
|
|
} );
|
|
$( '#togglenone' ).click( function () {
|
|
selectPages( false );
|
|
} );
|
|
} );
|
|
}( jQuery ) );
|