From 6bd52b28c201c2afb43397c1413000d47563da0b Mon Sep 17 00:00:00 2001 From: supahgreg Date: Tue, 14 Oct 2025 23:18:13 +0000 Subject: Remove 'App.findAll()', which was essentially an alias of 'document.querySelectorAll()'. --- js/Article.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'js/Article.js') diff --git a/js/Article.js b/js/Article.js index a9684c755..4a640ce43 100644 --- a/js/Article.js +++ b/js/Article.js @@ -425,7 +425,7 @@ const Article = { if (id !== Article.getActive()) { console.log("setActive", id, "was", Article.getActive()); - App.findAll("div[id*=RROW][class*=active]").forEach((row) => { + document.querySelectorAll('div[id*=RROW][class*=active]').forEach((row) => { row.classList.remove('active'); if (App.isCombinedMode() && !App.getInitParam("cdm_expanded")) -- cgit v1.2.3-54-g00ecf