mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-13 19:05:55 +00:00
attach headline menu objects to correct DOM nodes in combined mode
This commit is contained in:
@@ -159,7 +159,16 @@ function headlines_callback2(transport, offset, background, infscroll_req) {
|
||||
dijit.byId("headlines-frame").domNode.appendChild(row);
|
||||
|
||||
loaded_article_ids.push(row.id);
|
||||
new_rows.push(row);
|
||||
|
||||
if (!isCdmMode() || row.hasClassName("cdmFeedTitle")) {
|
||||
new_rows.push(row);
|
||||
} else if (isCdmMode()) {
|
||||
var titleWrap = $$("#" + row.id + " .titleWrap")[0];
|
||||
|
||||
if (titleWrap) {
|
||||
new_rows.push(titleWrap);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user