diff --git wp-admin/js/edit-comments.dev.js wp-admin/js/edit-comments.dev.js
index 796ead0..cbbd712 100644
|
|
|
1 | | var theList, theExtraList, toggleWithKeyboard = false; |
| 1 | var theList, theExtraList, toggleWithKeyboard = false, ed_reply; |
2 | 2 | (function($) { |
3 | 3 | |
4 | 4 | setCommentsList = function() { |
… |
… |
commentReply = { |
305 | 305 | close : function() { |
306 | 306 | var c; |
307 | 307 | |
| 308 | ed_reply.edCloseAllTags(); |
308 | 309 | if ( this.cid ) { |
309 | 310 | c = $('#comment-' + this.cid); |
310 | | |
| 311 | |
311 | 312 | if ( this.act == 'edit-comment' ) |
312 | 313 | c.fadeIn(300, function(){ c.show() }).css('backgroundColor', ''); |
313 | 314 | |
… |
… |
commentReply = { |
351 | 352 | $('#replyhead, #replybtn', editRow).hide(); |
352 | 353 | |
353 | 354 | h = c.height(); |
354 | | if ( h > 220 ) |
355 | | if ( $.browser.msie ) |
356 | | $('#replycontainer, #replycontent', editRow).height(h-105); |
357 | | else |
358 | | $('#replycontainer', editRow).height(h-105); |
| 355 | if ( h > 220 ) { |
| 356 | $('#replycontainer, #replycontent', editRow).height(h-104); |
| 357 | } |
359 | 358 | |
360 | 359 | c.after( editRow ).fadeOut('fast', function(){ |
361 | 360 | $('#replyrow').fadeIn(300, function(){ $(this).show() }); |