1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2026-02-10 16:01:33 +00:00

enable collapsing of labels

This commit is contained in:
Andrew Dolgov
2007-08-11 18:44:20 +01:00
parent 34a01a2078
commit bd64489f65
2 changed files with 22 additions and 2 deletions
+8
View File
@@ -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 });