Make WordPress Core

Ticket #28888: 28888.patch

File 28888.patch, 1.6 KB (added by anonymized_13665966, 8 years ago)
  • wp-admin/js/customize-widgets.js

     
    5353
    5454                // Controls searching on the current widget collection
    5555                // and triggers an update event
    56                 doSearch: function( value ) {
     56                doSearch: _.debounce( function( value ) {
     57                        var options = {};
    5758
    5859                        // Don't do anything if we've already done this search
    5960                        // Useful because the search handler fires multiple times per keystroke
     
    7576                                        widget.set( 'search_matched', true );
    7677                                } );
    7778                        }
    78                 },
    7979
     80                }, 500 ),
     81
    8082                // Performs a search within the collection
    8183                // @uses RegExp
    8284                search: function( term ) {
  • wp-includes/class-wp-customize-widgets.php

     
    770770                                'saveBtnLabel'     => __( 'Apply' ),
    771771                                'saveBtnTooltip'   => __( 'Save and preview changes before publishing them.' ),
    772772                                'removeBtnLabel'   => __( 'Remove' ),
    773                                 'removeBtnTooltip' => __( 'Trash widget by moving it to the inactive widgets sidebar.' ),
     773                                'removeBtnTooltip' => __( 'Remove widget by moving it to the inactive widgets list: your widget settings/content will be preserved.' ),
    774774                                'error'            => __( 'An error has occurred. Please reload the page and try again.' ),
    775775                                'widgetMovedUp'    => __( 'Widget moved up' ),
    776776                                'widgetMovedDown'  => __( 'Widget moved down' ),