1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-22 19:01:29 +00:00

prefs: rework categorized feed list, boxed feed editor instead of inline

This commit is contained in:
Andrew Dolgov
2005-12-10 20:35:09 +01:00
parent 4663f9c650
commit 0ea4fb5096
4 changed files with 196 additions and 144 deletions

View File

@@ -391,9 +391,18 @@ function editFeed(feed) {
active_feed = feed;
xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=edit&id=" +
/* xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=edit&id=" +
param_escape(feed), true);
xmlhttp.onreadystatechange=feedlist_callback;
xmlhttp.send(null); */
selectTableRowsByIdPrefix('prefFeedList', 'FEEDR-', 'FRCHK-', false);
selectTableRowsByIdPrefix('prefFeedList', 'FEEDR-'+feed, 'FRCHK-'+feed, true);
xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=editfeed&id=" +
param_escape(active_feed), true);
xmlhttp.onreadystatechange=infobox_callback;
xmlhttp.send(null);
}