diff --git a/src/js/_enqueues/admin/edit-comments.js b/src/js/_enqueues/admin/edit-comments.js
index 4391d50fef..2ea373e187 100644
|
a
|
b
|
window.commentReply = { |
| 798 | 798 | } |
| 799 | 799 | }); |
| 800 | 800 | |
| | 801 | $( 'textarea#replycontent', row ).keypress( function( e ) { |
| | 802 | if ( ( e.metaKey || e.ctrlKey ) && ( e.which == 10 || e.which == 13 ) ) { |
| | 803 | commentReply.send(); |
| | 804 | e.preventDefault(); |
| | 805 | return false; |
| | 806 | } |
| | 807 | }); |
| | 808 | |
| 801 | 809 | // add events |
| 802 | 810 | $('#the-comment-list .column-comment > p').dblclick(function(){ |
| 803 | 811 | commentReply.toggle($(this).parent()); |