mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Thanks
synced 2024-11-30 17:44:18 +00:00
da266db965
composer: * mediawiki/mediawiki-codesniffer: 38.0.0 → 39.0.0 * mediawiki/mediawiki-phan-config: 0.11.0 → 0.11.1 * php-parallel-lint/php-console-highlighter: 0.5.0 → 1.0.0 * php-parallel-lint/php-parallel-lint: 1.3.1 → 1.3.2 npm: * eslint-config-wikimedia: 0.20.0 → 0.22.1 * grunt: 1.4.0 → 1.5.2 * grunt-eslint: 23.0.0 → 24.0.0 * async: 3.2.0 → 3.2.3 * https://github.com/advisories/GHSA-fwr7-v2mv-hh25 * https://github.com/advisories/GHSA-fwr7-v2mv-hh25 Additional changes: * Set `name` in package.json. Change-Id: I7dfe053d1281bab4df8abcbaac84aa2a2f1bf198
58 lines
1.5 KiB
JavaScript
58 lines
1.5 KiB
JavaScript
( function () {
|
|
/** @class jQuery */
|
|
|
|
/**
|
|
* Adds support to find parent elements using .closest with less-than selector syntax.
|
|
*
|
|
* $.findWithParent( $div, "< html div < body" ); // find closest parent of $div "html", find child "div" of it, find closest parent "body" of that, return "body"
|
|
* $( '#foo' ).findWithParent( '.bar < .baz' ); // find child ".bar" of "#foo", return closest parent ".baz" from there
|
|
*
|
|
* @method findWithParent
|
|
* @param {jQuery|HTMLElement|string} $context
|
|
* @param {string} selector
|
|
* @return {jQuery}
|
|
*/
|
|
function jQueryFindWithParent( $context, selector ) {
|
|
var matches;
|
|
|
|
$context = $( $context );
|
|
selector = selector.trim();
|
|
|
|
while ( selector && ( matches = selector.match( /(.*?(?:^|[>\s+~]))(<\s*[^>\s+~]+)(.*?)$/ ) ) ) {
|
|
if ( matches[ 1 ].trim() ) {
|
|
$context = $context.find( matches[ 1 ] );
|
|
}
|
|
if ( matches[ 2 ].trim() ) {
|
|
$context = $context.closest( matches[ 2 ].slice( 1 ) );
|
|
}
|
|
selector = matches[ 3 ].trim();
|
|
}
|
|
|
|
if ( selector ) {
|
|
$context = $context.find( selector );
|
|
}
|
|
|
|
return $context;
|
|
}
|
|
|
|
$.findWithParent = jQueryFindWithParent;
|
|
|
|
/** @class jQuery.fn */
|
|
/**
|
|
* @param {string} selector
|
|
* @return {jQuery}
|
|
* @see jQuery#findWithParent
|
|
*/
|
|
$.fn.findWithParent = function ( selector ) {
|
|
var selectors = selector.split( ',' ),
|
|
$elements = $(),
|
|
self = this;
|
|
|
|
selectors.forEach( function ( sel ) {
|
|
$elements = $elements.add( jQueryFindWithParent( self, sel ) );
|
|
} );
|
|
|
|
return $elements;
|
|
};
|
|
}() );
|