mirror of
https://git.sindominio.net/estibadores/wordpress.git
synced 2024-11-14 23:21:07 +01:00
15 lines
417 B
JavaScript
15 lines
417 B
JavaScript
|
jQuery( document ).ready( function( $ ) {
|
||
|
$( document ).keydown( function( e ) {
|
||
|
var url = false;
|
||
|
if ( e.which === 37 ) { // Left arrow key code
|
||
|
url = $( '.nav-previous a' ).attr( 'href' );
|
||
|
}
|
||
|
else if ( e.which === 39 ) { // Right arrow key code
|
||
|
url = $( '.entry-attachment a' ).attr( 'href' );
|
||
|
}
|
||
|
if ( url && ( !$( 'textarea, input' ).is( ':focus' ) ) ) {
|
||
|
window.location = url;
|
||
|
}
|
||
|
} );
|
||
|
} );
|