From 8ca069e7dd407159c27f8bc168595250803b8069 Mon Sep 17 00:00:00 2001 From: Sj-Si Date: Mon, 15 Apr 2024 12:21:47 -0400 Subject: [PATCH] fix comment --- javascript/clusterize.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/javascript/clusterize.js b/javascript/clusterize.js index 21f3d37ee..a8fb03b62 100644 --- a/javascript/clusterize.js +++ b/javascript/clusterize.js @@ -10,7 +10,7 @@ // Many operations can be lenghty. Try to limit their frequency by debouncing. const SCROLL_DEBOUNCE_TIME_MS = 50; -const RESIZE_OBSERVER_DEBOUNCE_TIME_MS = 50; // should be less than refresh debounce time +const RESIZE_OBSERVER_DEBOUNCE_TIME_MS = 50; // should be <= refresh debounce time const ELEMENT_OBSERVER_DEBOUNCE_TIME_MS = 100; const REFRESH_DEBOUNCE_TIME_MS = 50;