summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--feedlist.js4
-rw-r--r--tt-rss.js2
2 files changed, 5 insertions, 1 deletions
diff --git a/feedlist.js b/feedlist.js
index e1a1e7c56..fdfe4d86f 100644
--- a/feedlist.js
+++ b/feedlist.js
@@ -42,7 +42,9 @@ function viewfeed(feed, subop, is_cat, subop_param, skip_history, offset) {
if (getInitParam("theme") == "" && getInitParam("hide_feedlist")) {
Element.hide("feeds-holder");
-
+// Effect.Fade('feeds-holder', {duration : 0.2,
+// queue: { position: 'end', scope: 'FLFADEQ', limit: 1 }});
+
}
var force_nocache = false;
diff --git a/tt-rss.js b/tt-rss.js
index 2bdca6919..9cbe05134 100644
--- a/tt-rss.js
+++ b/tt-rss.js
@@ -750,6 +750,8 @@ function toggle_feedlist() {
fl.style.zIndex = 30;
} else {
Element.hide(fl);
+// Effect.Fade(fl, {duration : 0.2,
+// queue: { position: 'end', scope: 'FLFADEQ', limit: 1 }});
}
} catch (e) {
exception_error(e, "toggle_feedlist");