Make WordPress Core

Ticket #48198: 48198.5.diff

File 48198.5.diff, 2.2 KB (added by garrett-eclipse, 5 years ago)

Remove newline I added unintentionally

  • src/js/_enqueues/wp/customize/nav-menus.js

     
    216216                                }
    217217                        } );
    218218
    219                         // Clear the search results and trigger a `keyup` event to fire a new search.
     219                        // Clear the search results and trigger an `input` event to fire a new search.
    220220                        this.$clearResults.on( 'click', function() {
    221                                 self.$search.val( '' ).focus().trigger( 'keyup' );
     221                                self.$search.val( '' ).focus().trigger( 'input' );
    222222                        } );
    223223
    224224                        this.$el.on( 'input', '#custom-menu-item-name.invalid, #custom-menu-item-url.invalid', function() {
     
    733733                        $( 'body' ).removeClass( 'adding-menu-items' );
    734734                        $( '#available-menu-items .menu-item-handle.item-added' ).removeClass( 'item-added' );
    735735
    736                         this.$search.val( '' ).trigger( 'keyup' );
     736                        this.$search.val( '' ).trigger( 'input' );
    737737                },
    738738
    739739                // Add a few keyboard enhancements to the panel.
     
    18191819                                /*
    18201820                                 * If the menu item deleted is the only of its instance left,
    18211821                                 * remove the check icon of this menu item in the right panel.
    1822                                  */ 
     1822                                 */
    18231823                                _.each( addedItems, function( addedItem ) {
    18241824                                        var menuItemId, menuItemControl, matches;
    1825                                                
     1825
    18261826                                        // This is because menu item that's deleted is just hidden.
    18271827                                        if ( ! $( addedItem ).is( ':visible' ) ) {
    18281828                                                return;
  • src/js/_enqueues/wp/customize/widgets.js

     
    193193                                }
    194194                        } );
    195195
    196                         // Clear the search results and trigger a new search.
     196                        // Clear the search results and trigger an `input` event to fire a new search.
    197197                        this.$clearResults.on( 'click', function() {
    198                                 self.$search.val( '' ).focus();
    199                                 self.collection.doSearch( '' );
     198                                self.$search.val( '' ).focus().trigger( 'input' );
    200199                        } );
    201200
    202201                        // Close the panel if the URL in the preview changes.
     
    385384
    386385                        $( 'body' ).removeClass( 'adding-widget' );
    387386
    388                         this.$search.val( '' );
     387                        this.$search.val( '' ).trigger( 'input' );
    389388                },
    390389
    391390                /**