don't set img src in notifications to blank

This commit is contained in:
Zach Prezkuta 2013-05-11 09:43:21 -06:00
parent 3a13aba62e
commit 5d30008ab3
6 changed files with 18 additions and 6 deletions

View file

@ -182,7 +182,11 @@
$j("img[data-src]", nnm).each(function(i, el){
// Add src attribute for images with a data-src attribute
$j(el).attr('src', $j(el).data("src"));
// However, don't bother if the data-src attribute is empty, because
// an empty "src" tag for an image will cause some browsers
// to prefetch the root page of the Friendica hub, which will
// unnecessarily load an entire profile/ or network/ page
if($j(el).data("src") != '') $j(el).attr('src', $j(el).data("src"));
});
}
notif = eNotif.attr('count');