mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-06 02:41:27 +01:00
e17e29d4ea
Props kapteinbluf, igorsch. Fixes #43204. Built from https://develop.svn.wordpress.org/trunk@42715 git-svn-id: http://core.svn.wordpress.org/trunk@42543 1a063a9b-81f0-0310-95a4-ce76da25c4cd
23 lines
729 B
JavaScript
23 lines
729 B
JavaScript
/**
|
|
* Generates the XHTML Friends Network 'rel' string from the inputs.
|
|
*
|
|
* @deprecated 3.5.0
|
|
*/
|
|
jQuery( document ).ready(function( $ ) {
|
|
$( '#link_rel' ).prop( 'readonly', true );
|
|
$( '#linkxfndiv input' ).bind( '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 ) );
|
|
});
|
|
});
|