diff options
| author | supahgreg <supahgreg@users.noreply.github.com> | 2025-10-14 23:18:13 +0000 |
|---|---|---|
| committer | supahgreg <supahgreg@users.noreply.github.com> | 2025-10-14 23:18:13 +0000 |
| commit | 6bd52b28c201c2afb43397c1413000d47563da0b (patch) | |
| tree | 9a992f39573f34a0901e96e52f53a58446d2f60b /js/Article.js | |
| parent | 6d3619724735cad09bcb24110403d21479d1fd4d (diff) | |
Remove 'App.findAll()', which was essentially an alias of 'document.querySelectorAll()'.
Diffstat (limited to 'js/Article.js')
| -rw-r--r-- | js/Article.js | 2 |
1 files changed, 1 insertions, 1 deletions
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")) |