���ѧۧݧ�ӧ�� �ާ֧ߧ֧էا֧� - ���֧էѧܧ�ڧ��ӧѧ�� - /home/rickpfrv/wiki.craftaro.com/resources/src/mediawiki.page.ready/checkboxShift.js
���ѧ٧ѧ�
/** * @private * @class mw.plugin.page.ready */ /** * Enable checkboxes to be checked or unchecked in a row by clicking one, * holding shift and clicking another one. * * @method checkboxShift * @param {jQuery} $box */ module.exports = function ( $box ) { var prev; // When our boxes are clicked.. $box.on( 'click', function ( e ) { // And one has been clicked before... if ( prev && e.shiftKey ) { // Check or uncheck this one and all in-between checkboxes, // except for disabled ones $box .slice( Math.min( $box.index( prev ), $box.index( e.target ) ), Math.max( $box.index( prev ), $box.index( e.target ) ) + 1 ) .filter( function () { return !this.disabled; } ) .prop( 'checked', e.target.checked ); } // Either way, remember this as the last clicked one prev = e.target; } ); };
| ver. 1.4 |
Github
|
.
| PHP 7.4.33 | ���֧ߧ֧�ѧ�ڧ� ����ѧߧڧ��: 1.01 |
proxy
|
phpinfo
|
���ѧ����ۧܧ�