summaryrefslogtreecommitdiff
path: root/js/feedlist.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2013-03-27 22:41:12 +0400
committerAndrew Dolgov <[email protected]>2013-03-27 22:41:12 +0400
commitf820f205d0ec1c5ce9027e49755fc8642b0c5b42 (patch)
treeb07cb37df439735543cafd7368aa2316ef6f9882 /js/feedlist.js
parent919984a43644da47a978b8ddd6d07be7273f6366 (diff)
css cleanup; remove auxDlg; add separate prefs.css
Diffstat (limited to 'js/feedlist.js')
-rw-r--r--js/feedlist.js23
1 files changed, 0 insertions, 23 deletions
diff --git a/js/feedlist.js b/js/feedlist.js
index 7385177d1..ec3b09dab 100644
--- a/js/feedlist.js
+++ b/js/feedlist.js
@@ -88,8 +88,6 @@ function viewfeed(feed, method, is_cat, offset, background, infscroll_req) {
_infscroll_request_sent = timestamp;
}
-
- hideAuxDlg();
}
Form.enable("main_toolbar_form");
@@ -206,23 +204,6 @@ function request_counters(force) {
}
}
-function displayNewContentPrompt(id) {
- try {
-
- var msg = "<a href='#' onclick='viewCurrentFeed()'>" +
- __("New articles available in this feed (click to show)") + "</a>";
-
- msg = msg.replace("%s", getFeedName(id));
-
- $('auxDlg').innerHTML = msg;
-
- new Effect.Appear('auxDlg', {duration : 0.5});
-
- } catch (e) {
- exception_error("displayNewContentPrompt", e);
- }
-}
-
function parse_counters(elems, scheduled_call) {
try {
for (var l = 0; l < elems.length; l++) {
@@ -245,10 +226,6 @@ function parse_counters(elems, scheduled_call) {
continue;
}
- if (id == getActiveFeedId() && ctr > getFeedUnread(id) && scheduled_call) {
- displayNewContentPrompt(id);
- }
-
if (getFeedUnread(id, (kind == "cat")) != ctr ||
(kind == "cat")) {
}