aboutsummaryrefslogtreecommitdiffhomepage
path: root/ui/static
diff options
context:
space:
mode:
authorGravatar Frédéric Guillot <fred@miniflux.net>2019-07-26 21:13:06 -0700
committerGravatar Frédéric Guillot <fred@miniflux.net>2019-07-26 21:24:15 -0700
commit3d19313a7f655bc2626990650c4de8141485eea3 (patch)
treec7fb0ade2b0f2eac2ae42067342df2e584ad230d /ui/static
parent17aae725830cdd27131d40e20f3901d7da25e281 (diff)
Add option to disable feeds
Diffstat (limited to 'ui/static')
-rw-r--r--ui/static/js/app.js4
1 files changed, 0 insertions, 4 deletions
diff --git a/ui/static/js/app.js b/ui/static/js/app.js
index f054cc0..cae1d45 100644
--- a/ui/static/js/app.js
+++ b/ui/static/js/app.js
@@ -118,10 +118,6 @@ function markPageAsRead() {
function handleEntryStatus(element) {
let currentEntry = findEntry(element);
if (currentEntry) {
- // The order is important here,
- // On the unread page, the read item will be hidden.
- // If "goToNextListItem" first, it may go to an item about to hide:
- // Imagine that user click 'mark as read' right below the '.current-item'
toggleEntryStatus(currentEntry);
if (isListView() && currentEntry.classList.contains('current-item')) {
goToNextListItem();