1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 21:25:55 +00:00

try to parse new headline elements after they have been deduplicated

This commit is contained in:
Andrew Dolgov
2012-12-25 18:04:29 +04:00
parent cb1a012bb8
commit fb0b2ebf84

View File

@@ -120,8 +120,6 @@ function headlines_callback2(transport, offset, background, infscroll_req) {
$("headlines-tmp").innerHTML = reply['headlines']['content'];
dojo.parser.parse('headlines-tmp');
var hsp = $("headlines-spacer");
if (hsp)
@@ -164,6 +162,8 @@ function headlines_callback2(transport, offset, background, infscroll_req) {
initHeadlinesMenu();
new_elems.each(function(child) {
dojo.parser.parse(child);
if (!Element.visible(child))
new Effect.Appear(child, { duration : 0.5 });
});