1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-15 13:35:59 +00:00

initial feed browser work

This commit is contained in:
Andrew Dolgov
2005-12-29 17:36:41 +01:00
parent 9b3e2cc74c
commit f9cb39acaf
3 changed files with 74 additions and 0 deletions

View File

@@ -1285,3 +1285,11 @@ function categorizeSelectedFeeds() {
function validatePrefsReset() {
return confirm("Reset to defaults?");
}
function browseFeeds() {
xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=browse", true);
xmlhttp.onreadystatechange=infobox_callback;
xmlhttp.send(null);
}