JSHint and coding style fixes for xfn.js.

props dougwollison.
fixes #26030.


git-svn-id: https://develop.svn.wordpress.org/trunk@26174 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Nacin 2013-11-14 21:57:11 +00:00
parent c380f3276a
commit c137a8979a

View File

@ -1,16 +1,17 @@
jQuery(document).ready( function($) { jQuery( document ).ready(function( $ ) {
$('#link_rel').prop('readonly', true); $( '#link_rel' ).prop( 'readonly', true );
$('#linkxfndiv input').bind('click keyup', function() { $( '#linkxfndiv input' ).bind( 'click keyup', function() {
var isMe = $('#me').is(':checked'), inputs = ''; var isMe = $( '#me' ).is( ':checked' ), inputs = '';
$('input.valinp').each( function() { $( 'input.valinp' ).each( function() {
if (isMe) { if ( isMe ) {
$(this).prop('disabled', true).parent().addClass('disabled'); $( this ).prop( 'disabled', true ).parent().addClass( 'disabled' );
} else { } else {
$(this).removeAttr('disabled').parent().removeClass('disabled'); $( this ).removeAttr( 'disabled' ).parent().removeClass( 'disabled' );
if ( $(this).is(':checked') && $(this).val() != '') if ( $( this ).is( ':checked' ) && $( this ).val() !== '') {
inputs += $(this).val() + ' '; inputs += $( this ).val() + ' ';
}
} }
}); });
$('#link_rel').val( (isMe) ? 'me' : inputs.substr(0,inputs.length - 1) ); $( '#link_rel' ).val( ( isMe ) ? 'me' : inputs.substr( 0,inputs.length - 1 ) );
}); });
}); });