Merge pull request #9519 from owncloud/search-bounce
debounce the search function
This commit is contained in:
commit
7af1a05266
1 changed files with 2 additions and 2 deletions
|
@ -380,7 +380,7 @@ var OC={
|
|||
* Do a search query and display the results
|
||||
* @param {string} query the search query
|
||||
*/
|
||||
search:function(query){
|
||||
search: _.debounce(function(query){
|
||||
if(query){
|
||||
OC.addStyle('search','results');
|
||||
$.getJSON(OC.filePath('search','ajax','search.php')+'?query='+encodeURIComponent(query), function(results){
|
||||
|
@ -388,7 +388,7 @@ var OC={
|
|||
OC.search.showResults(results);
|
||||
});
|
||||
}
|
||||
},
|
||||
}, 500),
|
||||
dialogs:OCdialogs,
|
||||
mtime2date:function(mtime) {
|
||||
mtime = parseInt(mtime,10);
|
||||
|
|
Loading…
Reference in a new issue