Make WordPress Core

Ticket #43333: customizer-menu-search-43333.patch

File customizer-menu-search-43333.patch, 735 bytes (added by aranwer104, 7 years ago)

Customizer: Change the state of menu item search area when closed.

  • customize-nav-menus.js

     
    728728                        $( '#available-menu-items .menu-item-handle.item-added' ).removeClass( 'item-added' );
    729729
    730730                        this.$search.val( '' );
     731
     732                        // Clear search fields.
     733                        if ( this.$clearResults.hasClass( 'open' ) ) {
     734                                this.$clearResults.removeClass( 'open' );
     735                        }
     736                       
     737                        if ( this.$clearResults.hasClass( 'is-visible' ) ) {
     738                                this.$clearResults.removeClass( 'is-visible' );
     739                        }
     740
     741                        if ( this.sectionContent.is(':visible') ) {
     742                                this.sectionContent.hide();
     743                        }
    731744                },
    732745
    733746                // Add a few keyboard enhancements to the panel.