1
0
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:
Andrew Dolgov
2010-11-13 14:04:37 +03:00
parent 20f16e7197
commit 8cc5e96512
6 changed files with 156 additions and 325 deletions

View File

@@ -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;