1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-15 23:55:56 +00:00

remove ACTFEEDID container, keep information in a cookie instead (getActiveFeedId/setActiveFeedId API)

This commit is contained in:
Andrew Dolgov
2005-09-08 06:29:45 +01:00
parent 25cb57366a
commit 867413478a
5 changed files with 32 additions and 38 deletions

View File

@@ -270,3 +270,11 @@ function gotoMain() {
function gotoExportOpml() {
document.location.href = "opml.php?op=Export";
}
function getActiveFeedId() {
return getCookie("ttrss_vf_actfeed");
}
function setActiveFeedId(id) {
return setCookie("ttrss_vf_actfeed", id);
}