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

git-svn-id: https://develop.svn.wordpress.org/trunk@23366 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov 2013-02-01 18:43:23 +00:00
parent 78b83d3fc1
commit a873f4acdb
1 changed files with 3 additions and 0 deletions

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