mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-21 11:51:29 +00:00
use css-based layout in normal mode
This commit is contained in:
16
functions.js
16
functions.js
@@ -205,22 +205,6 @@ function cleanSelected(element) {
|
||||
}
|
||||
}
|
||||
|
||||
function getVisibleUnreadHeadlines() {
|
||||
var content = $("headlinesList");
|
||||
|
||||
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")) {
|
||||
rows.push(row_id);
|
||||
}
|
||||
}
|
||||
return rows;
|
||||
}
|
||||
|
||||
function setCookie(name, value, lifetime, path, domain, secure) {
|
||||
|
||||
var d = false;
|
||||
|
||||
Reference in New Issue
Block a user