Ticket #33059: 33059.2.patch
File 33059.2.patch, 587 bytes (added by , 10 years ago) |
---|
-
src/wp-admin/js/post.js
649 649 650 650 $timestampdiv.siblings('a.edit-timestamp').click( function( event ) { 651 651 if ( $timestampdiv.is( ':hidden' ) ) { 652 $timestampdiv.slideDown('fast'); 653 $('#mm').focus(); 652 $timestampdiv.slideDown( 'fast', function() { 653 $( 'input, select', $timestampdiv.find( '.timestamp-wrap' ) ).first().focus(); 654 } ); 654 655 $(this).hide(); 655 656 } 656 657 event.preventDefault();