From 6962505095b67eb56fa6bc4f20ed972dc7d02595 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Tue, 8 Jul 2014 15:42:58 +0200 Subject: [PATCH] debounce the search function --- core/js/js.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/js/js.js b/core/js/js.js index 72b65f41a16..4a9a5ce82ff 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -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); -- 2.39.5