Fixed minor WordPress coding standard issues.

This commit is contained in:
Vinod Dalvi 2013-09-30 22:32:42 -07:00
parent 54614ee763
commit 430d379f4b
2 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@ jQuery( document ).ready( function( $ ) {
else if ( e.which === 39 ) { // Right arrow key code
url = $( '.entry-attachment a' ).attr( 'href' );
}
if ( url && ( !$( 'textarea, input' ).is( ':focus' ) ) ) {
if ( url && ( ! $( 'textarea, input' ).is( ':focus' ) ) ) {
window.location = url;
}
} );