1
0
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:
Andrew Dolgov
2008-05-19 11:24:46 +01:00
parent 673c994674
commit 3a40e8a2ed
5 changed files with 49 additions and 4 deletions

View File

@@ -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) {