summaryrefslogtreecommitdiff
path: root/feedlist.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2007-08-11 18:44:20 +0100
committerAndrew Dolgov <[email protected]>2007-08-11 18:44:20 +0100
commitbd64489f652a769429fb67e137abcaa9d3b2b5de (patch)
treedfae5fac9290445dd72800d9df46e6d0cf931426 /feedlist.js
parent34a01a20786349e8fbdbae3d089e29b400172700 (diff)
enable collapsing of labels
Diffstat (limited to 'feedlist.js')
-rw-r--r--feedlist.js8
1 files changed, 8 insertions, 0 deletions
diff --git a/feedlist.js b/feedlist.js
index 344b28acf..af792ccff 100644
--- a/feedlist.js
+++ b/feedlist.js
@@ -238,6 +238,14 @@ function toggleCollapseCat(cat) {
}
}
+ if (cat == -2) {
+ if (Element.visible("FCATLIST-" + cat)) {
+ setCookie("ttrss_vf_lclps", "1");
+ } else {
+ setCookie("ttrss_vf_lclps", "0");
+ }
+ }
+
Effect.toggle('FCATLIST-' + cat, 'blind', { duration: 0.5,
afterFinish: toggleCollapseCat_af });