From bce922ab892378438b0706a671d87b59e752377a Mon Sep 17 00:00:00 2001 From: Manan Jethwani Date: Tue, 6 Jul 2021 09:03:41 +0530 Subject: [PATCH] bug fix for loader --- static/skin/index.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/static/skin/index.js b/static/skin/index.js index d07ac6b70..c77c05800 100644 --- a/static/skin/index.js +++ b/static/skin/index.js @@ -293,10 +293,6 @@ document.querySelectorAll('.filter').forEach(filter => { filter.addEventListener('change', () => {resetAndFilter(filter.name, filter.value)}); }); - filterTypes.forEach((filter) => { - const filterTag = document.getElementsByName(filter)[0]; - filterTag.addEventListener('change', () => {resetAndFilter(filterTag.name, filterTag.value)}); - }); if (filters) { window.history.pushState({}, null, `${window.location.href.split('?')[0]}?${params.toString()}`); }