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:
24
functions.js
24
functions.js
@@ -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";
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user