diff options
| author | supahgreg <supahgreg@users.noreply.github.com> | 2025-10-14 22:43:09 +0000 |
|---|---|---|
| committer | supahgreg <supahgreg@users.noreply.github.com> | 2025-10-14 22:43:09 +0000 |
| commit | 6d3619724735cad09bcb24110403d21479d1fd4d (patch) | |
| tree | 1dd90b777cfdcea698ac2fd966eb13f46aa107b6 /js/Feeds.js | |
| parent | 73f9d7bd6c8f222145c29c91eeb43ba7c7677496 (diff) | |
Remove various Element and Array prototype extensions (and similar).
Diffstat (limited to 'js/Feeds.js')
| -rw-r--r-- | js/Feeds.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/Feeds.js b/js/Feeds.js index 790b64dd4..29ae72558 100644 --- a/js/Feeds.js +++ b/js/Feeds.js @@ -535,7 +535,7 @@ const Feeds = { const rows = App.findAll("#headlines-frame > div[id*=RROW][class*=Unread][data-orig-feed-id='" + id + "']"); rows.forEach((row) => { - row.removeClassName("Unread"); + row.classList.remove('Unread'); }) } }, |