mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/MinervaNeue
synced 2024-11-17 03:08:12 +00:00
a62f1e06ff
CHECKBOX_HACK_TARGET_SELECTOR only applies to the first list and there are three lists in the menu. Use the parent instead. Additional changes: * Transform to ES6 while working on this code. Bug: T354315 Change-Id: I354e33af872e9a2f93d97793f5f33b735d42e804
35 lines
1 KiB
JavaScript
35 lines
1 KiB
JavaScript
( function () {
|
|
const
|
|
checkboxHack = require( ( 'mediawiki.page.ready' ) ).checkboxHack,
|
|
CHECKBOX_HACK_CONTAINER_SELECTOR = '.toggle-list',
|
|
CHECKBOX_HACK_CHECKBOX_SELECTOR = '.toggle-list__checkbox',
|
|
CHECKBOX_HACK_BUTTON_SELECTOR = '.toggle-list__toggle',
|
|
CHECKBOX_HACK_TARGET_SELECTOR = '.toggle-list__list';
|
|
|
|
/**
|
|
* Automatically dismiss the list when clicking or focusing elsewhere and update the
|
|
* aria-expanded attribute based on list visibility.
|
|
*
|
|
* @param {Window} window
|
|
* @param {HTMLElement} component
|
|
*/
|
|
function bind( window, component ) {
|
|
const
|
|
checkbox = /** @type {HTMLInputElement} */ (
|
|
component.querySelector( CHECKBOX_HACK_CHECKBOX_SELECTOR )
|
|
),
|
|
button = component.querySelector( CHECKBOX_HACK_BUTTON_SELECTOR ),
|
|
target = component.querySelector( CHECKBOX_HACK_TARGET_SELECTOR ).parentNode;
|
|
|
|
if ( !( checkbox && button && target ) ) {
|
|
return;
|
|
}
|
|
checkboxHack.bind( window, checkbox, button, target );
|
|
}
|
|
|
|
module.exports = Object.freeze( {
|
|
selector: CHECKBOX_HACK_CONTAINER_SELECTOR,
|
|
bind
|
|
} );
|
|
}() );
|