Ticket #25746: 25746.patch
File 25746.patch, 936 bytes (added by , 11 years ago) |
---|
-
src/wp-admin/js/edit-comments.js
390 390 $('#comment_post_ID', editRow).val(post_id); 391 391 $('#comment_ID', editRow).val(comment_id); 392 392 393 if ( h > 120 )394 $('#replycontent', editRow).css('height', (35+h) + 'px');395 396 393 if ( action == 'edit' ) { 397 394 $('#author', editRow).val( $('div.author', rowData).text() ); 398 395 $('#author-email', editRow).val( $('div.author-email', rowData).text() ); … … 402 399 $('#edithead, #savebtn', editRow).show(); 403 400 $('#replyhead, #replybtn, #addhead, #addbtn', editRow).hide(); 404 401 402 if ( h > 120 ) 403 $('#replycontent', editRow).css('height', ( 35 + h ) + 'px'); 404 405 405 c.after( editRow ).fadeOut('fast', function(){ 406 406 $('#replyrow').fadeIn(300, function(){ $(this).show() }); 407 407 });