summaryrefslogtreecommitdiff
path: root/js/Headlines.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2018-12-09 13:52:21 +0300
committerAndrew Dolgov <[email protected]>2018-12-09 13:52:21 +0300
commitdc84e10ba1c0a886bf56d63b7d6d145806d2cc71 (patch)
treec73ff8a70f0a347b27ef9a26c8db88d506918aef /js/Headlines.js
parentfa538a6c86bad425a361cd9bc06b15dbad13bd50 (diff)
catchupFeedInGroup: overhaul
1. less hacky way to catchup actually unread headlines 2. don't fade rows away because it's inconsistent with different mark-as-read functions 3. fix stuck progress alert
Diffstat (limited to 'js/Headlines.js')
-rwxr-xr-xjs/Headlines.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/Headlines.js b/js/Headlines.js
index d01c1cb38..20ae3e1a9 100755
--- a/js/Headlines.js
+++ b/js/Headlines.js
@@ -255,7 +255,7 @@ define(["dojo/_base/declare"], function (declare) {
let vgrhdr = `<div data-feed-id='${hl.feed_id}' class='feed-title'>
<div style='float : right'>${hl.feed_icon}</div>
<a class="title" href="#" onclick="Feeds.open({feed:${hl.feed_id}})">${hl.feed_title}
- <a class="catchup" onclick="Feeds.catchupFeedInGroup(${hl.feed_id})" href="#">${__('mark feed as read')}</a>
+ <a class="catchup" title="${__('mark feed as read')}" onclick="Feeds.catchupFeedInGroup(${hl.feed_id})" href="#"><i class="material-icons">check_circle</i></a>
</div>`
const tmp = document.createElement("div");