summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2018-12-09 13:53:26 +0300
committerAndrew Dolgov <[email protected]>2018-12-09 13:53:26 +0300
commit302cffb1a77dd62746fcbb4aec6982f14a344719 (patch)
treeb9cae9dc4246832dd8e4ae773b0e0197ac195fea /js
parentdc84e10ba1c0a886bf56d63b7d6d145806d2cc71 (diff)
catchupFeedInGroup: better icon
Diffstat (limited to 'js')
-rwxr-xr-xjs/Headlines.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/Headlines.js b/js/Headlines.js
index 20ae3e1a9..7f5de89d5 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" title="${__('mark feed as read')}" onclick="Feeds.catchupFeedInGroup(${hl.feed_id})" href="#"><i class="material-icons">check_circle</i></a>
+ <a class="catchup" title="${__('mark feed as read')}" onclick="Feeds.catchupFeedInGroup(${hl.feed_id})" href="#"><i class="icon-done material-icons">done_all</i></a>
</div>`
const tmp = document.createElement("div");