1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-14 03:15:54 +00:00

tweak quickAddFeed dialog

This commit is contained in:
Andrew Dolgov
2007-08-11 17:43:45 +01:00
parent 5f014cf1a7
commit b9073cd980
9 changed files with 306 additions and 277 deletions

View File

@@ -1395,6 +1395,30 @@ function showBlockElement(id, h_id) {
}
}
function appearBlockElement_afh(effect) {
}
function checkboxToggleElement(elem, id) {
if (elem.checked) {
Effect.SlideDown(id, {duration : 1.0});
} else {
Effect.SlideUp(id, {duration : 1.0});
}
}
function appearBlockElement(id, h_id) {
try {
Effect.Fade(h_id);
Effect.SlideDown(id, {duration : 1.0, afterFinish: appearBlockElement_afh});
} catch (e) {
exception_error("appearBlockElement", e);
}
}
function hideParentElement(e) {
e.parentNode.style.display = "none";
}