MediaWiki:Gadget-CollapsibleNav.js: Perbedaan antara revisi

Konten dihapus Konten ditambahkan
←Membuat halaman berisi '* * Collapsible navigation for Vector * @source /core/skins/vector/collapsibleNav.js: ( function ( mw, $ ) { 'use strict'; var map; // Use the same function...'
 
Krenair (bicara | kontrib)
Maintenance: mw:RL/MGU / mw:RL/JD - phab:T169385 - deprecated in jQuery 3.0
 
Baris 128:
// Toggle the selected menu's class and expand or collapse the menu
$( '#mw-panel' )
.delegateon( 'keydown', '.portal:not(.persistent) > h3', 'keydown', function ( e ) {
// Make the space and enter keys act as a click
if ( e.which === 13 /* Enter */ || e.which === 32 /* Space */ ) {
Baris 134:
}
} )
.delegateon( 'mousedown', '.portal:not(.persistent) > h3', 'mousedown', function ( e ) {
if ( e.which !== 3 ) { // Right mouse click
toggle( $(this) );