1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-15 23:15:57 +00:00

code cleanup

This commit is contained in:
Andrew Dolgov
2009-01-18 11:52:01 +01:00
parent f8bfb81fd1
commit beb760d516
3 changed files with 0 additions and 192 deletions

View File

@@ -856,34 +856,6 @@ function feedEditSave() {
}
}
function labelEditCancel() {
closeInfoBox();
return false;
}
function labelEditSave() {
try {
closeInfoBox();
notify_progress("Saving label...");
query = Form.serialize("label_edit_form");
new Ajax.Request("backend.php?" + query, {
onComplete: function(transport) {
dlg_frefresh_callback(transport);
} });
return false;
} catch (e) {
exception_error("feedEditSave (main)", e);
}
}
function clearFeedArticles(feed_id) {
notify_progress("Clearing feed...");
@@ -898,28 +870,6 @@ function clearFeedArticles(feed_id) {
return false;
}
/*
function toggle_feedlist() {
try {
debug("toggle_feedlist");
var fl = document.getElementById("feeds-holder");
if (!Element.visible(fl)) {
Element.show(fl);
fl.style.zIndex = 30;
fl.scrollTop = _hfd_scrolltop;
} else {
_hfd_scrolltop = fl.scrollTop;
Element.hide(fl);
// Effect.Fade(fl, {duration : 0.2,
// queue: { position: 'end', scope: 'FLFADEQ', limit: 1 }});
}
} catch (e) {
exception_error("toggle_feedlist", e);
}
} */
function collapse_feedlist() {
try {
debug("toggle_feedlist");