Make WordPress Core

Ticket #45371: 45371.1.patch

File 45371.1.patch, 650 bytes (added by ryanshoover, 6 years ago)

Refreshes patch to just use isComposing

  • src/js/_enqueues/admin/tags-box.js

     
    377377                         *
    378378                         * @return {void}
    379379                         */
    380                         $( 'input.newtag', ajaxtag ).keypress( function( event ) {
    381                                 if ( 13 == event.which ) {
     380                        $( 'input.newtag', ajaxtag ).keyup( function( event ) {
     381                                if ( 13 == event.which && ! ( event.originalEvent && event.originalEvent.isComposing ) ) {
    382382                                        tagBox.userAction = 'add';
    383383                                        tagBox.flushTags( $( this ).closest( '.tagsdiv' ) );
    384384                                        event.preventDefault();