From 6972a469794a654c6ecd6b32b68a813e1c47f7ec Mon Sep 17 00:00:00 2001 From: Alexandre Alapetite Date: Wed, 6 Aug 2014 20:41:47 +0200 Subject: [PATCH] Dynamic favicon all unread articles https://github.com/marienfressinaud/FreshRSS/issues/539 --- p/scripts/main.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/p/scripts/main.js b/p/scripts/main.js index 762b2e58e..7a85be9c6 100644 --- a/p/scripts/main.js +++ b/p/scripts/main.js @@ -1060,7 +1060,10 @@ function init_password_observers() { function faviconNbUnread(n) { if (typeof n === 'undefined') { - n = str2int($('.category.all>a').attr('data-unread')); + n = 0; + $('.feed[data-unread]').each(function() { + n += str2int(this.getAttribute('data-unread')); + }); } //http://remysharp.com/2010/08/24/dynamic-favicons/ var canvas = document.createElement('canvas'),