[ Index ] |
PHP Cross Reference of MediaWiki-1.24.0 |
[Summary view] [Print] [Text view]
1 /** 2 * JavaScript for the Nuke MediaWiki extension. 3 * @see https://www.mediawiki.org/wiki/Extension:Nuke 4 * 5 * @licence GNU GPL v2 or later 6 * @author Jeroen De Dauw <jeroendedauw at gmail dot com> 7 */ 8 9 ( function ( $ ) { 10 'use strict'; 11 12 $( document ).ready( function () { 13 14 function selectPages( check ) { 15 $( 'input[type=checkbox]' ).prop( 'checked', check ); 16 } 17 18 $( '#toggleall' ).click( function () { 19 selectPages( true ); 20 } ); 21 $( '#togglenone' ).click( function () { 22 selectPages( false ); 23 } ); 24 } ); 25 }( jQuery ) );
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Fri Nov 28 14:03:12 2014 | Cross-referenced by PHPXref 0.7.1 |