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

use popup feedbrowser for main UI (incomplete)

This commit is contained in:
Andrew Dolgov
2009-01-23 19:54:57 +01:00
parent 273d1e293e
commit b56465dd56
4 changed files with 101 additions and 54 deletions

View File

@@ -1422,3 +1422,31 @@ function addLabel() {
function visitOfficialSite() {
window.open("http://tt-rss.org/");
}
function browseFeeds(limit) {
try {
var query = "backend.php?op=pref-feeds&subop=browse";
notify_progress("Loading, please wait...", true);
new Ajax.Request(query, {
onComplete: function(transport) {
infobox_callback2(transport);
} });
return false;
} catch (e) {
exception_error("browseFeeds", e);
}
}
function updateFeedBrowser() {
alert("FIXME");
}
function feedBrowserSubscribe() {
alert("FIXME");
}