From 65f8581478a3fff9b39d9c9a6011f8b0d3225655 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Fri, 16 Dec 2005 06:37:18 +0100 Subject: workaround for Uncategorized collapse state, fix pre-collapsed category display in outputFeedList --- feedlist.js | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'feedlist.js') diff --git a/feedlist.js b/feedlist.js index e93108379..526526643 100644 --- a/feedlist.js +++ b/feedlist.js @@ -170,9 +170,15 @@ function toggleCollapseCat(cat) { if (cat_list.className.match("invisible")) { cat_list.className = ""; caption.innerHTML = caption.innerHTML.replace("...", ""); + if (cat == 0) { + setCookie("ttrss_vf_uclps", "0"); + } } else { cat_list.className = "invisible"; caption.innerHTML = caption.innerHTML + "..."; + if (cat == 0) { + setCookie("ttrss_vf_uclps", "1"); + } } xmlhttp_rpc.open("GET", "backend.php?op=feeds&subop=collapse&cid=" + -- cgit v1.2.3