forked from mirror/_s
_s: A better name for the image navigation script and better experience by cycling through a gallery when done
git-svn-id: https://wpcom-themes.svn.automattic.com/_s/@8849 d957f892-c61d-0410-b221-f235e6eecf30
This commit is contained in:
parent
5f2d6758e7
commit
e8b2bb81c6
|
@ -7,7 +7,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
get_header();
|
get_header();
|
||||||
wp_enqueue_script( 'keyboard-navigation', get_template_directory_uri() . '/js/keyboard-navigation.js', array( 'jquery' ), '20120202' );
|
wp_enqueue_script( 'keyboard-image-navigation', get_template_directory_uri() . '/js/keyboard-image-navigation.js', array( 'jquery' ), '20120202' );
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<div id="primary" class="site-content" class="image-attachment">
|
<div id="primary" class="site-content" class="image-attachment">
|
||||||
|
|
|
@ -5,7 +5,7 @@ jQuery( document ).ready( function( $ ) {
|
||||||
url = $( '.previous-image a' ).attr( 'href' );
|
url = $( '.previous-image a' ).attr( 'href' );
|
||||||
}
|
}
|
||||||
else if ( e.which == 39 ) { // Right arrow key code
|
else if ( e.which == 39 ) { // Right arrow key code
|
||||||
url = $( '.next-image a' ).attr( 'href' );
|
url = $( '.entry-attachment a' ).attr( 'href' );
|
||||||
}
|
}
|
||||||
if ( url && ( !$( 'textarea, input' ).is( ':focus' ) ) ) {
|
if ( url && ( !$( 'textarea, input' ).is( ':focus' ) ) ) {
|
||||||
window.location = url;
|
window.location = url;
|
Reference in New Issue