Themes screen: remove extra debounce when searching.

Props evansolomon. Fixes #31812.

git-svn-id: https://develop.svn.wordpress.org/trunk@31995 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Ozz 2015-04-03 02:36:36 +00:00
parent c3d7fa68ce
commit ca908b2056
1 changed files with 1 additions and 1 deletions

View File

@ -1289,7 +1289,7 @@ themes.view.InstallerSearch = themes.view.Search.extend({
event.target.value = '';
}
_.debounce( _.bind( this.doSearch, this ), 300 )( event.target.value );
this.doSearch( event.target.value );
},
doSearch: _.debounce( function( value ) {