wp386/js/keyboard-image-navigation.js

15 lines
419 B
JavaScript
Raw Permalink Normal View History

jQuery( document ).ready( function( $ ) {
$( document ).keydown( function( e ) {
var url = false;
2013-07-14 16:38:08 +10:00
if ( e.which === 37 ) { // Left arrow key code
url = $( '.previous-image a' ).attr( 'href' );
}
2013-07-14 16:38:08 +10:00
else if ( e.which === 39 ) { // Right arrow key code
url = $( '.entry-attachment a' ).attr( 'href' );
}
if ( url && ( !$( 'textarea, input' ).is( ':focus' ) ) ) {
window.location = url;
}
} );
2013-07-14 16:38:08 +10:00
} );