summaryrefslogtreecommitdiff
path: root/functions.js
diff options
context:
space:
mode:
Diffstat (limited to 'functions.js')
-rw-r--r--functions.js8
1 files changed, 8 insertions, 0 deletions
diff --git a/functions.js b/functions.js
index 5f8b2425f..4e758a7d0 100644
--- a/functions.js
+++ b/functions.js
@@ -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);
+}