summaryrefslogtreecommitdiff
path: root/skins/vector/vector.js
blob: 757f7c8c99b82aef1594cb38521484e923c57968 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
 * Vector-specific scripts
 */
jQuery( function( $ ) {
	var $pCactions = $( '#p-cactions' );
	$pCactions.find( 'h5 a' )
		// For accessibility, show the menu when the hidden link in the menu is clicked (bug 24298)
		.click( function( e ) {
			$pCactions.find( '.menu' ).toggleClass( 'menuForceShow' );
			e.preventDefault();
		})
		// When the hidden link has focus, also set a class that will change the arrow icon
		.focus( function() {
			$pCactions.addClass( 'vectorMenuFocus' );
		})
		.blur( function() {
			$pCactions.removeClass( 'vectorMenuFocus' );
		});
});