]> git.wh0rd.org - tt-rss.git/blobdiff - functions.js
rework feed-prefs ops toolbar
[tt-rss.git] / functions.js
index abbe6232662344e5875bdf07ef7d4efcb95f9025..dab019c7108e77f941493106ced29594815a6cc0 100644 (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";
 }
@@ -1715,3 +1716,5 @@ function getSelectedArticleIds2() {
 
        return ids;
 }
+
+