summaryrefslogtreecommitdiff
path: root/tt-rss.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2006-05-23 07:15:49 +0100
committerAndrew Dolgov <[email protected]>2006-05-23 07:15:49 +0100
commit33d13e72e28bf5fd1b8946c69ef05bd0f8ff9d0c (patch)
tree3f76368267cb8a5e1562ab715067ae99b751de3c /tt-rss.js
parentac378ad4ec0b870931b16daebcf0c1f22f9fa303 (diff)
init param API is context-free
Diffstat (limited to 'tt-rss.js')
-rw-r--r--tt-rss.js15
1 files changed, 1 insertions, 14 deletions
diff --git a/tt-rss.js b/tt-rss.js
index ed6cae91e..eefcd95fa 100644
--- a/tt-rss.js
+++ b/tt-rss.js
@@ -10,6 +10,7 @@ var _qfd_deleted_feed = 0;
var firsttime_update = true;
var last_refetch = 0;
var cookie_lifetime = 0;
+var active_feed_id = 0;
var xmlhttp = Ajax.getTransport();
@@ -430,8 +431,6 @@ function init_second_stage() {
cookie_lifetime = getCookie("ttrss_cltime");
delCookie("ttrss_vf_test");
-
- setCookie("ttrss_vf_actfeed", "");
updateFeedList(false, false);
document.onkeydown = hotkey_handler;
@@ -594,16 +593,4 @@ function fatalError(code, message) {
}
}
-function getInitParam(key) {
- return init_params[key];
-}
-function storeInitParam(key, value) {
- try {
- init_params[key] = value;
- new Ajax.Request("backend.php?op=rpc&subop=storeParam&key=" +
- param_escape(key) + "&value=" + param_escape(value));
- } catch (e) {
- exception_error("storeInitParam", e);
- }
-}