achille-press/js/keyboard-image-navigation.js
Thomas Guillot f87479f70d _s: Fix element for left arrow key code
Previous one was deprecated
2013-08-27 10:29:46 +01:00

14 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;
}
} );
} );