mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-15 01:45:56 +00:00
add placeholder mouse trap code, misc fixes
This commit is contained in:
@@ -262,6 +262,8 @@ function getVisibleUnreadHeadlines() {
|
||||
|
||||
var rows = new Array();
|
||||
|
||||
if (!content) return rows;
|
||||
|
||||
for (i = 0; i < content.rows.length; i++) {
|
||||
var row_id = content.rows[i].id.replace("RROW-", "");
|
||||
if (row_id.length > 0 && content.rows[i].className.match("Unread")) {
|
||||
@@ -277,6 +279,8 @@ function getVisibleHeadlineIds() {
|
||||
|
||||
var rows = new Array();
|
||||
|
||||
if (!content) return rows;
|
||||
|
||||
for (i = 0; i < content.rows.length; i++) {
|
||||
var row_id = content.rows[i].id.replace("RROW-", "");
|
||||
if (row_id.length > 0) {
|
||||
|
||||
Reference in New Issue
Block a user