Twenty Fourteen: improved JS support for keyboard navigation for main navigation menu. Props obenland, see #25054.
git-svn-id: https://develop.svn.wordpress.org/trunk@25757 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
822d558774
commit
6a433a7284
@ -117,16 +117,8 @@
|
||||
|
||||
} );
|
||||
|
||||
/* Accessibility hover styles for menu. */
|
||||
$( '.primary-navigation li' ).hover( function() {
|
||||
$( this ).addClass( 'a11y-focus' );
|
||||
}, function() {
|
||||
$( this ).delay( '250' ).removeClass( 'a11y-focus' );
|
||||
}
|
||||
);
|
||||
$( '.primary-navigation li a' ).on( 'focus blur', function() {
|
||||
$( this ).parents().toggleClass( 'a11y-focus' );
|
||||
}
|
||||
);
|
||||
|
||||
/* Focus styles for primary menu. */
|
||||
$( '.primary-navigation' ).find( 'a' ).on( 'focus.twentyfourteen blur.twentyfourteen', function() {
|
||||
$( this ).parents().toggleClass( 'focus' );
|
||||
});
|
||||
} )( jQuery );
|
Loading…
Reference in New Issue
Block a user