summaryrefslogtreecommitdiff
path: root/feedlist.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2010-11-16 13:10:57 +0300
committerAndrew Dolgov <[email protected]>2010-11-16 13:10:57 +0300
commit07bb58c7217cdcdc89d7209780c0f6b952e70e7e (patch)
tree4b8d5fea23fab6147361fe70a8901b82b5df144e /feedlist.js
parent8363f4e68b9c522c9048d4da12b5f4a212dc8816 (diff)
js: code cleanup
Diffstat (limited to 'feedlist.js')
-rw-r--r--feedlist.js47
1 files changed, 0 insertions, 47 deletions
diff --git a/feedlist.js b/feedlist.js
index 071887a1b..4171c633d 100644
--- a/feedlist.js
+++ b/feedlist.js
@@ -290,13 +290,6 @@ function feedlist_init() {
console.log("T:" +
getInitParam("cdm_auto_catchup") + " " + get_feed_unread(-3));
- if (getInitParam("theme") == "" ||
- getInitParam("theme_options").match("hide_footer")) {
- setTimeout("hide_footer()", 5000);
- }
-
- //init_collapsable_feedlist(getInitParam("theme"));
-
toggle_sortable_feedlist(isFeedlistSortable());
} catch (e) {
@@ -304,46 +297,6 @@ function feedlist_init() {
}
}
-/* function hide_footer_af(effect) {
- try {
- var c = $("content-frame");
-
- if (c) {
- c.style.bottom = "0px";
-
- var ioa = $("inline_orig_article");
-
- if (ioa) {
- ioa.height = c.offsetHeight;
- }
-
- } else {
- var h = $("headlines-frame");
-
- if (h) {
- h.style.bottom = "0px";
- }
- }
-
- } catch (e) {
- exception_error("hide_footer_af", e);
- }
-} */
-
-function hide_footer() {
- try {
- /* if (Element.visible("footer")) {
-
- Element.hide("footer");
- dijit.byId("main").resize();
-
- //new Effect.Fade("footer", { afterFinish: hide_footer_af });
- } */
- } catch (e) {
- exception_error("hide_footer", e);
- }
-}
-
function enable_selection(b) {
selection_disabled = !b;
}