Unread entry tooltip
This commit is contained in:
parent
93c9cba831
commit
30424f7d39
@ -151,6 +151,7 @@ function openFeed(feed) {
|
|||||||
// Create unread count element
|
// Create unread count element
|
||||||
const unreadCount = document.createElement('span');
|
const unreadCount = document.createElement('span');
|
||||||
unreadCount.className = 'feed-unread-count';
|
unreadCount.className = 'feed-unread-count';
|
||||||
|
unreadCount.title = 'Unread entry count';
|
||||||
if (feed.unread_count > 0) {
|
if (feed.unread_count > 0) {
|
||||||
unreadCount.textContent = feed.unread_count;
|
unreadCount.textContent = feed.unread_count;
|
||||||
unreadCount.style.display = 'inline';
|
unreadCount.style.display = 'inline';
|
||||||
|
Loading…
Reference in New Issue
Block a user