add dropout effect when hiding read feeds

This commit is contained in:
Andrew Dolgov 2007-08-10 10:52:24 +01:00
parent 68c80eec18
commit 225ec0d4c2
3 changed files with 15 additions and 6 deletions

View File

@ -193,7 +193,7 @@ function toggleCollapseCat(cat) {
var cat_list = document.getElementById("FCATLIST-" + cat).parentNode;
var caption = document.getElementById("FCAP-" + cat);
if (cat_list.className.match("invisible")) {
/* if (cat_list.className.match("invisible")) {
cat_list.className = "";
caption.innerHTML = caption.innerHTML.replace("...", "");
if (cat == 0) {
@ -204,8 +204,11 @@ function toggleCollapseCat(cat) {
caption.innerHTML = caption.innerHTML + "...";
if (cat == 0) {
setCookie("ttrss_vf_uclps", "1");
}
}
}
} */
Effect.toggle('FCATLIST-' + cat, 'blind', { duration: 0.5 });
new Ajax.Request("backend.php?op=feeds&subop=collapse&cid=" +
param_escape(cat));

View File

@ -1009,16 +1009,20 @@ function hideOrShowFeedsCategory(doc, node, hide, cat_node) {
// debug(node.childNodes[i].id + " --> " + has_unread);
if (hide && !has_unread) {
node.childNodes[i].style.display = "none";
//node.childNodes[i].style.display = "none";
Effect.DropOut(node.childNodes[i], {duration : 0.3});
}
if (!hide) {
node.childNodes[i].style.display = "list-item";
//Effect.Appear(node.childNodes[i], {duration : 0.3});
}
if (has_unread) {
node.childNodes[i].style.display = "list-item";
cat_unread++;
//Effect.Appear(node.childNodes[i], {duration : 0.3});
//Effect.Highlight(node.childNodes[i]);
}
}
}

View File

@ -3420,10 +3420,12 @@
}
if ($collapsed == "t" || $collapsed == "1") {
$holder_class = "invisible";
$holder_class = "feedCatHolder";
$holder_style = "display:none;";
$ellipsis = "...";
} else {
$holder_class = "feedCatHolder";
$holder_style = "";
$ellipsis = "";
}
@ -3442,7 +3444,7 @@
// !!! NO SPACE before <ul...feedCatList - breaks firstChild DOM function
// -> keyboard navigation, etc.
print "<li id=\"feedCatHolder\" class=\"$holder_class\"><ul class=\"feedCatList\" id=\"FCATLIST-$cat_id\">";
print "<li id=\"feedCatHolder\" class=\"$holder_class\"><ul class=\"feedCatList\" id=\"FCATLIST-$cat_id\" style='$holder_style'>";
}
printFeedEntry($feed_id, $class, $feed, $unread,