1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-14 02:25:55 +00:00

add collapsed CDM mode

This commit is contained in:
Andrew Dolgov
2007-10-18 03:55:44 +01:00
parent bef4c2451e
commit a04c8e8dc2
3 changed files with 44 additions and 3 deletions

View File

@@ -1198,7 +1198,9 @@ function checkboxToggleElement(elem, id) {
function appearBlockElement(id, h_id) {
try {
Effect.Fade(h_id);
if (h_id) {
Effect.Fade(h_id);
}
Effect.SlideDown(id, {duration : 1.0, afterFinish: appearBlockElement_afh});
} catch (e) {
exception_error("appearBlockElement", e);
@@ -1206,7 +1208,6 @@ function appearBlockElement(id, h_id) {
}
function hideParentElement(e) {
e.parentNode.style.display = "none";
}