Dynamic favicon all unread articles

https://github.com/marienfressinaud/FreshRSS/issues/539
pull/569/head
Alexandre Alapetite 10 years ago
parent 6ef9fc7a92
commit 6972a46979
  1. 5
      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'),

Loading…
Cancel
Save