From: Andrew Dolgov Date: Tue, 6 Sep 2005 04:30:11 +0000 (+0100) Subject: store last opened feed in cookie, cleanup tt-rss.js a little bit X-Git-Tag: 1.0.3~31 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=47179952ac504e410fec802fecc550060439366b;p=tt-rss.git store last opened feed in cookie, cleanup tt-rss.js a little bit --- 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, ""); + } }