55e956dd67
A magazine theme with clean, responsive design focused on highlighting featured content prominently on home page. This is slated for 3.8. Development will occur in trunk for the theme, and in plugins for the nice-to-have features. Nice-to-have improvements include: - Add a Contributors page template to highlight authors. - Easy-to-manage featured content. - Add support for an Authors widget to highlight authors. Welcome, Twenty Fourteen né Further. Props iamtakashi, see #24858. git-svn-id: https://develop.svn.wordpress.org/trunk@24832 602fd350-edb4-49c9-b593-d223f7449a82
14 lines
416 B
JavaScript
14 lines
416 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;
|
|
}
|
|
} );
|
|
} ); |