From 89b63bb8f85d9ed96c52cb61af60d6ef250749ef Mon Sep 17 00:00:00 2001 From: kushthedude Date: Fri, 28 Feb 2020 00:40:11 +0530 Subject: [PATCH] resetting schedule update to 500 --- main/webapp/modules/core/scripts/facets/text-search-facet.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main/webapp/modules/core/scripts/facets/text-search-facet.js b/main/webapp/modules/core/scripts/facets/text-search-facet.js index ebc756ce3..aa50663dc 100644 --- a/main/webapp/modules/core/scripts/facets/text-search-facet.js +++ b/main/webapp/modules/core/scripts/facets/text-search-facet.js @@ -203,7 +203,7 @@ TextSearchFacet.prototype._scheduleUpdate = function() { this._timerID = window.setTimeout(function() { self._timerID = null; self._updateRest(); - }, 2000); + }, 500); } };