Make WordPress Core

Ticket #54548: 54548.2.diff

File 54548.2.diff, 770 bytes (added by afercia, 3 years ago)
  • src/js/_enqueues/admin/edit-comments.js

     
    10321032                        else if ( rtop - 20 < scrollTop )
    10331033                                window.scroll(0, rtop - 35);
    10341034
    1035                         $('#replycontent').trigger( 'focus' ).on( 'keyup', function(e){
    1036                                 if ( e.which == 27 )
    1037                                         commentReply.revert(); // Close on Escape.
    1038                         });
     1035                        $( '#replycontent' ).trigger( 'focus' ).on( 'keyup', function( e ) {
     1036                                // Close on Escape. Account for Input Method Editor (IME) converters.
     1037                                if ( e.which === 27 && ! e.originalEvent.isComposing ) {
     1038                                        commentReply.revert();
     1039                                }
     1040                        } );
    10391041                }, 600);
    10401042
    10411043                return false;