PrefixSearch: Avoid notice when no subpage exists
[mediawiki.git] / resources / src / jquery / jquery.mw-jump.js
blob5eae0bec8d393316f513d0dbc8c5228b8d06e9ad
1 /**
2 * JavaScript to show jump links to motor-impaired users when they are focused.
3 */
4 jQuery( function ( $ ) {
6 $( '.mw-jump' ).on( 'focus blur', 'a', function ( e ) {
7 // Confusingly jQuery leaves e.type as focusout for delegated blur events
8 if ( e.type === 'blur' || e.type === 'focusout' ) {
9 $( this ).closest( '.mw-jump' ).css( { height: 0 } );
10 } else {
11 $( this ).closest( '.mw-jump' ).css( { height: 'auto' } );
13 } );
15 } );