From 8158c57a8e3a40338045e0b809bca42f1e703ca5 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Wed, 7 Sep 2005 14:31:21 +0100 Subject: update schema, more mysql work --- tt-rss.js | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) (limited to 'tt-rss.js') diff --git a/tt-rss.js b/tt-rss.js index 2015797c5..1d1c793a9 100644 --- a/tt-rss.js +++ b/tt-rss.js @@ -58,16 +58,18 @@ function feedlist_callback() { } */ +function checkActiveFeedId() { -function refetch_callback() { + var actfeedid = frames["feeds-frame"].document.getElementById("ACTFEEDID"); - if (xmlhttp_rpc.readyState == 4) { + if (actfeedid) { + active_feed_id = actfeedid.innerHTML; + } +} - var actfeedid = frames["feeds-frame"].document.getElementById("ACTFEEDID"); +function refetch_callback() { - if (actfeedid) { - active_feed_id = actfeedid.innerHTML; - } + if (xmlhttp_rpc.readyState == 4) { document.title = "Tiny Tiny RSS"; notify("All feeds updated."); @@ -253,6 +255,7 @@ function resetSearch() { } function search() { + checkActiveFeedId(); if (active_feed_id) { viewfeed(active_feed_id, 0, ""); } else { @@ -315,9 +318,9 @@ function init() { updateFeedList(false, false); document.onkeydown = hotkey_handler; - setTimeout("timeout()", 1800*1000); - scheduleFeedUpdate(true); +// setTimeout("timeout()", 1800*1000); +// scheduleFeedUpdate(true); var content = document.getElementById("content"); -- cgit v1.2.3