mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-02 16:59:35 +01:00
d22061139e
Fixes #36497. Built from https://develop.svn.wordpress.org/trunk@40851 git-svn-id: http://core.svn.wordpress.org/trunk@40702 1a063a9b-81f0-0310-95a4-ce76da25c4cd
27 lines
527 B
JavaScript
27 lines
527 B
JavaScript
/**
|
|
* Twenty Sixteen keyboard support for image navigation.
|
|
*/
|
|
|
|
( function( $ ) {
|
|
$( document ).on( 'keydown.twentysixteen', function( e ) {
|
|
var url = false;
|
|
|
|
// Left arrow key code.
|
|
if ( 37 === e.which ) {
|
|
url = $( '.nav-previous a' ).attr( 'href' );
|
|
|
|
// Right arrow key code.
|
|
} else if ( 39 === e.which ) {
|
|
url = $( '.nav-next a' ).attr( 'href' );
|
|
|
|
// Other key code.
|
|
} else {
|
|
return;
|
|
}
|
|
|
|
if ( url && ! $( 'textarea, input' ).is( ':focus' ) ) {
|
|
window.location = url;
|
|
}
|
|
} );
|
|
} )( jQuery );
|