mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-06 19:01:44 +01:00
9d0e238255
* Enforce `===` instead of `==` * Fix confusing use of `!` * Remove unused variables like `calcNext`, defined but never used * Proper use of braces * Move functions out of if/else statements * Document unknown functions as Microsoft-specific Built from https://develop.svn.wordpress.org/trunk@25995 git-svn-id: http://core.svn.wordpress.org/trunk@25928 1a063a9b-81f0-0310-95a4-ce76da25c4cd
14 lines
418 B
JavaScript
14 lines
418 B
JavaScript
jQuery( document ).ready( function( $ ) {
|
|
$( document ).keydown( function( e ) {
|
|
var url = false;
|
|
if ( e.which === 37 ) { // Left arrow key code
|
|
url = $( '.previous-image 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;
|
|
}
|
|
} );
|
|
} ); |