aboutsummaryrefslogtreecommitdiff
path: root/p/scripts/main.js
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2024-10-17 09:00:08 +0200
committerGravatar GitHub <noreply@github.com> 2024-10-17 09:00:08 +0200
commitd9a82e6b9e92276122c75843183d3e42f3e17559 (patch)
tree1b85df3e339d0d0184c3f35c3b1d695c1197ee60 /p/scripts/main.js
parente04f0b3493b313dd47ef9fd93de1ccf023379dc7 (diff)
Use HTML5 hidden (#6910)
https://html.spec.whatwg.org/multipage/interaction.html#the-hidden-attribute Remove remains of `aria-hidden` mostly not used anymore in our logic. fix https://github.com/FreshRSS/FreshRSS/issues/6909
Diffstat (limited to 'p/scripts/main.js')
-rw-r--r--p/scripts/main.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/p/scripts/main.js b/p/scripts/main.js
index e11c35205..9e243a519 100644
--- a/p/scripts/main.js
+++ b/p/scripts/main.js
@@ -1779,7 +1779,7 @@ function refreshUnreads() {
if ((incUnreadsFeed(null, feed_id, nbUnreads - feed_unreads) || isAll) && // Update of current view?
(nbUnreads - feed_unreads > 0)) {
const newArticle = document.getElementById('new-article');
- newArticle.setAttribute('aria-hidden', 'false');
+ newArticle.removeAttribute('hidden');
newArticle.style.display = 'block';
new_articles = true;
}