summaryrefslogtreecommitdiff
path: root/feedlist.js
diff options
context:
space:
mode:
Diffstat (limited to 'feedlist.js')
-rw-r--r--feedlist.js15
1 files changed, 4 insertions, 11 deletions
diff --git a/feedlist.js b/feedlist.js
index b222c9bdb..d16a56e06 100644
--- a/feedlist.js
+++ b/feedlist.js
@@ -321,7 +321,7 @@ function feedlist_init() {
// if (arguments.callee.done) return;
// arguments.callee.done = true;
- loading_set_progress(80);
+ loading_set_progress(90);
debug("in feedlist init");
@@ -346,7 +346,7 @@ function feedlist_init() {
debug("some feed is open on feedlist refresh, reloading");
setTimeout("viewCurrentFeed()", 100);
} else {
- if (getInitParam("cdm_auto_catchup") != 1) {
+ if (getInitParam("cdm_auto_catchup") != 1 && get_feed_unread(-3) > 0) {
notify_silent_next();
setTimeout("viewfeed(-3)", 100);
} else {
@@ -366,8 +366,6 @@ function feedlist_init() {
init_collapsable_feedlist(getInitParam("theme"));
- loading_set_progress(80);
-
} catch (e) {
exception_error("feedlist/init", e);
}
@@ -463,11 +461,6 @@ function init_collapsable_feedlist(theme) {
function remove_splash() {
debug("about to remove splash, OMG!");
-
- var o = document.getElementById("overlay");
-
- if (o) {
- o.style.display = "none";
- debug("removed splash!");
- }
+ Element.hide("overlay");
+ debug("removed splash!");
}