summaryrefslogtreecommitdiff
path: root/functions.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2010-11-13 14:04:37 +0300
committerAndrew Dolgov <[email protected]>2010-11-13 14:04:37 +0300
commit8cc5e965125d083ea7b3b66699597888ce41d2ad (patch)
tree7de65d6bf5861419634fa200687529a7a4b3f197 /functions.js
parent20f16e7197c355d8446b8f7c581d0db1ebe8f612 (diff)
use css-based layout in normal mode
Diffstat (limited to 'functions.js')
-rw-r--r--functions.js16
1 files changed, 0 insertions, 16 deletions
diff --git a/functions.js b/functions.js
index a1bd9f5f4..d798f6bfa 100644
--- a/functions.js
+++ b/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;