diff --git a/archive/js/events.js b/archive/js/events.js index 64328cc..4e08c99 100644 --- a/archive/js/events.js +++ b/archive/js/events.js @@ -223,19 +223,6 @@ } } - // Utility: Debounce function - function debounce(func, wait) { - let timeout; - return function executedFunction(...args) { - const later = () => { - clearTimeout(timeout); - func(...args); - }; - clearTimeout(timeout); - timeout = setTimeout(later, wait); - }; - } - // Multi-select handling for folder lists function setupFolderMultiSelect() { let lastSelectedGroupingIndex = -1;