Select "Attribute all posts to..." radio button automatically when selecting a username from the dropdown. fixes #23224.

git-svn-id: http://core.svn.wordpress.org/trunk@23366 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2013-02-01 18:43:23 +00:00
parent 8cfd9e3c81
commit 6cb5f510b8

View File

@ -86,6 +86,9 @@ jQuery(document).ready( function($) {
$('input[name=delete_option]').one('change', function() {
submit.prop('disabled', false);
});
$('#reassign_user').focus( function() {
$('#delete_option1').prop('checked', true).trigger('change');
});
});
</script>
<?php