summaryrefslogtreecommitdiff
path: root/resources/jquery/jquery.mw-jump.js
blob: 36b6690c282dce6866a83ccf622d748bcb8c0c43 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/**
 * JavaScript to show jump links to motor-impaired users when they are focused.
 */
jQuery( function( $ ) {

	$('.mw-jump').delegate( 'a', 'focus blur', function( e ) {
		// Confusingly jQuery leaves e.type as "focusout" for delegated blur events
		if ( e.type === "blur" || e.type === "focusout" ) {
			$( this ).closest( '.mw-jump' ).css({ height: '0' });
		} else {
			$( this ).closest( '.mw-jump' ).css({ height: 'auto' });
		}
	} );

} );