AlkantarClanX12

Your IP : 3.145.59.244


Current Path : /home/thanudqk/128shen.com/wp-content/themes/darcie/assets/js/source/
Upload File :
Current File : /home/thanudqk/128shen.com/wp-content/themes/darcie/assets/js/source/keyboard-image-navigation.js

/**
 * nusicBand Pro keyboard support for image navigation.
 */

( function( $ ) {
	$( document ).on( 'keydown.nusicBand', function( e ) {
		var url = false;

		// Left arrow key code.
		if ( 37 === e.which ) {
			url = $( '.nav-previous a' ).attr( 'href' );

		// Right arrow key code.
		} else if ( 39 === e.which ) {
			url = $( '.nav-next a' ).attr( 'href' );

		// Other key code.
		} else {
			return;
		}

		if ( url && ! $( 'textarea, input' ).is( ':focus' ) ) {
			window.location = url;
		}
	} );
} )( jQuery );