230500
This commit is contained in:
23
backup/wp/wp-admin/js/xfn.js
Normal file
23
backup/wp/wp-admin/js/xfn.js
Normal file
@@ -0,0 +1,23 @@
|
||||
/**
|
||||
* Generates the XHTML Friends Network 'rel' string from the inputs.
|
||||
*
|
||||
* @deprecated 3.5.0
|
||||
* @output wp-admin/js/xfn.js
|
||||
*/
|
||||
jQuery( function( $ ) {
|
||||
$( '#link_rel' ).prop( 'readonly', true );
|
||||
$( '#linkxfndiv input' ).on( 'click keyup', function() {
|
||||
var isMe = $( '#me' ).is( ':checked' ), inputs = '';
|
||||
$( 'input.valinp' ).each( function() {
|
||||
if ( isMe ) {
|
||||
$( this ).prop( 'disabled', true ).parent().addClass( 'disabled' );
|
||||
} else {
|
||||
$( this ).removeAttr( 'disabled' ).parent().removeClass( 'disabled' );
|
||||
if ( $( this ).is( ':checked' ) && $( this ).val() !== '') {
|
||||
inputs += $( this ).val() + ' ';
|
||||
}
|
||||
}
|
||||
});
|
||||
$( '#link_rel' ).val( ( isMe ) ? 'me' : inputs.substr( 0,inputs.length - 1 ) );
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user