Файловый менеджер - Редактировать - /var/www/html/mediawiki-1.43.1/resources/src/mediawiki.checkboxtoggle.js
Ðазад
/*! * Allows users to perform all / none / invert operations on a list of * checkboxes on the page. * * @licence GNU GPL v2+ * @author Luke Faraone <luke at faraone dot cc> * * Based on ext.nuke.js from https://www.mediawiki.org/wiki/Extension:Nuke by * Jeroen De Dauw <jeroendedauw at gmail dot com> */ ( function () { 'use strict'; $( () => { // FIXME: This shouldn't be a global selector to avoid conflicts // with unrelated content on the same page. (T131318) const $checkboxes = $( 'li input[type="checkbox"]' ); function selectAll( check ) { $checkboxes.prop( 'checked', check ).trigger( 'change' ); } $( '.mw-checkbox-all' ).on( 'click', () => { selectAll( true ); } ); $( '.mw-checkbox-none' ).on( 'click', () => { selectAll( false ); } ); $( '.mw-checkbox-invert' ).on( 'click', () => { $checkboxes.prop( 'checked', ( i, val ) => !val ).trigger( 'change' ); } ); } ); }() );
| ver. 1.1 | |
.
| PHP 8.4.18 | Ð“ÐµÐ½ÐµÑ€Ð°Ñ†Ð¸Ñ Ñтраницы: 0 |
proxy
|
phpinfo
|
ÐаÑтройка