From 47179952ac504e410fec802fecc550060439366b Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Tue, 6 Sep 2005 05:30:11 +0100 Subject: [PATCH] store last opened feed in cookie, cleanup tt-rss.js a little bit --- tt-rss.js | 15 ++++----------- 1 file changed, 4 insertions(+), 11 deletions(-) diff --git a/tt-rss.js b/tt-rss.js index 34ab7102..9b9decf8 100644 --- a/tt-rss.js +++ b/tt-rss.js @@ -14,8 +14,6 @@ var active_post_id = false; var active_feed_id = false; var active_offset = false; -var total_feed_entries = false; - var search_query = ""; /*@cc_on @*/ @@ -244,15 +242,6 @@ function viewfeed(feed, skip, subop) { limit = "All"; } - if (skip < 0 || skip > total_feed_entries) { - return; - } - - if (!xmlhttp_ready(xmlhttp)) { - printLockingError(); - return - } - if (active_feed_id != feed || skip != active_offset) { active_post_id = false; } @@ -426,6 +415,10 @@ function init() { var viewbox = document.getElementById("viewbox"); viewbox.value = getCookie("ttrss_vf_vmode"); } + + if (getCookie("ttrss_vf_actfeed")) { + viewfeed(getCookie("ttrss_vf_actfeed"), 0, ""); + } } -- 2.39.2